From b0a780b4d4f7e638edbe4bdd855cb2e15c775995 Mon Sep 17 00:00:00 2001 From: Brandon Minnick <13558917+brminnick@users.noreply.github.com> Date: Sun, 26 May 2024 16:29:45 -0700 Subject: [PATCH] Update to .NET 8.0 (#225) * Update to .NET 8.0 * Update GitStatus.Mobile.csproj * Update GitStatus.Mobile.csproj * Update GitStatus.Mobile.csproj * Add `System.Diagnostics.CodeAnalysis` Support * Update ProductHeaderValueTests.cs * `dotnet format` * Remove `net7.0` support * Update to .NET 8.0 * Add .NET 7.0 to Unit Test * Update unittests.yml * Update unittests.yml * Update unittests.yml * Update unittests.yml * Update unittests.yml * Update unittests.yml * Fix Failing Tests * Remove Unused Usings * Fix Failing Unit Tests * Update Failing tests * Update GitHubApiStatus.UnitTests.csproj * Update Target Frameworks * Remove Unused Code, Increase to v3.0.0 --- .editorconfig | 17 ++- .github/workflows/build.yml | 40 +++--- .github/workflows/unittests.yml | 5 +- .gitignore | 1 + Directory.Build.props | 59 ++++++--- Directory.Build.targets | 45 +++++++ GitHubApiStatus.sln | 1 + README.md | 6 +- global.json | 4 +- samples/GitStatus.API/GetRateLimits.cs | 2 - samples/GitStatus.API/GitStatus.API.csproj | 2 +- samples/GitStatus.API/Program.cs | 4 +- .../GitStatus.ConsoleApp.csproj | 2 +- samples/GitStatus.ConsoleApp/Program.cs | 103 +++++++-------- .../generated/CommunityToolkit.Maui.json | 1 + .../.meteor/generated/GitStatus.Mobile.json | 1 + ...Microsoft.Maui.Controls.Compatibility.json | 1 + .../generated/Microsoft.Maui.Controls.json | 1 + .../GitStatus.Mobile/GitStatus.Mobile.csproj | 123 +++++++++--------- .../Platforms/Android/MainActivity.cs | 1 - .../Platforms/MacCatalyst/Program.cs | 3 +- .../GitStatus.Mobile/Platforms/iOS/Program.cs | 3 +- .../ViewModels/GraphQLApiStatusViewModel.cs | 5 +- .../ViewModels/RestApiStatusViewModel.cs | 5 +- samples/GitStatus.Web/GitStatus.Web.csproj | 2 +- samples/GitStatus.Web/Program.cs | 4 - ...itHubApiStatus.Extensions.UnitTests.csproj | 9 +- .../GitHubApiStatusServiceExtensionsTests.cs | 3 - .../MockGitHubApiStatusService.cs | 16 +-- .../GitHubApiStatus.Extensions.csproj | 7 +- .../GitHubApiStatusServiceExtensions.cs | 3 +- .../GitHubApiStatus.UnitTests.csproj | 3 +- .../Models/GraphQLError.cs | 3 +- .../Tests/Base/BaseTest.cs | 2 - ...tApiRateLimitsTests_NoCancellationToken.cs | 22 ++-- ...piRateLimitsTests_WithCancellationToken.cs | 42 +++--- .../Tests/GetRateLimitRestDateTimeTests.cs | 3 +- .../Tests/GetRateLimitTests.cs | 3 +- .../Tests/GetRateLimitTimeRemainingTests.cs | 3 +- .../Tests/GetRemainingRequestCountTests.cs | 3 +- .../GitHubApiStatusServiceConstructorTests.cs | 1 - .../HasReachedMaximumApiCallLimitTests.cs | 11 +- .../HttpResponseHeadersExtensionsTests.cs | 3 +- .../Tests/IsAbuseRateLimitTest.cs | 3 +- ...IsResponseFromAuthenticatedRequestTests.cs | 3 +- .../Tests/ProductHeaderValueTests.cs | 66 +++++----- .../SetAuthenticationHeaderValueTests.cs | 1 - src/GitHubApiStatus/GitHubApiStatus.csproj | 7 +- .../GitHubApiStatusException.cs | 4 +- .../HttpResponseHeadersExtensions.cs | 3 +- .../Interfaces/IGitHubApiStatusService.cs | 13 +- .../Interfaces/IRateLimitStatus.cs | 4 +- src/GitHubApiStatus/Models/RateLimitStatus.cs | 4 +- src/GitHubApiStatus/README.md | 6 +- .../Services/GitHubApiStatusService.cs | 9 +- 55 files changed, 358 insertions(+), 343 deletions(-) create mode 100644 Directory.Build.targets create mode 100644 samples/GitStatus.Mobile/.meteor/generated/CommunityToolkit.Maui.json create mode 100644 samples/GitStatus.Mobile/.meteor/generated/GitStatus.Mobile.json create mode 100644 samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.Compatibility.json create mode 100644 samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.json diff --git a/.editorconfig b/.editorconfig index e23bfb8..afe384b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -40,12 +40,15 @@ indent_size = 2 # Organize usings dotnet_sort_system_directives_first = true -# IDE0160: Use file scoped namespace -csharp_style_namespace_declarations = file_scoped:error - # CS4014: Because this call is not awaited, execution of the current method continues before the call is completed dotnet_diagnostic.CS4014.severity = error +# CS2012: ValueTask instances returned from member invocations are intended to be directly awaited. Attempts to consume a ValueTask multiple times or to directly access one's result before it's known to be completed may result in an exception or corruption. Ignoring such a ValueTask is likely an indication of a functional bug and may degrade performance. +dotnet_diagnostic.CS2012.severity = error + +# CS1998 : This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. +dotnet_diagnostic.CS1998.severity = error + # Remove explicit default access modifiers dotnet_style_require_accessibility_modifiers = omit_if_default:error @@ -67,7 +70,10 @@ csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion csharp_style_pattern_matching_over_as_with_null_check = true:suggestion csharp_style_inlined_variable_declaration = true:suggestion csharp_style_throw_expression = true:suggestion -csharp_style_conditional_delegate_call = true:suggestions +csharp_style_conditional_delegate_call = true:suggestion + +# Collection Expressions +dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion # Naming rules @@ -118,6 +124,9 @@ dotnet_diagnostic.CA1050.severity = error # CA2016: Forward the 'cancellationToken' parameter methods that take one dotnet_diagnostic.CA2016.severity = error +# CA1068: CancellationToken parameters must come last +dotnet_diagnostic.CA1068.severity = error + # CA2208: Method passes parameter as the paramName argument to a ArgumentNullException constructor. Replace this argument with one of the method's parameter names. Note that the provided parameter name should have the exact casing as declared on the method. dotnet_diagnostic.CA2208.severity = error diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 815565d..6a79cc4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: "7.0.x" + dotnet-version: "8.0.x" - name: Install .NET MAUI Workload run: | @@ -32,7 +32,7 @@ jobs: MobileProjectDirectory=`dirname $MobileProject` echo $MobileProjectDirectory - dotnet build $MobileProjectDirectory -f:net7.0-android -c Release + dotnet build $MobileProjectDirectory -f:net8.0-android -c Release iOS: runs-on: macos-13 @@ -40,10 +40,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: "7.0.x" + dotnet-version: "8.0.x" - name: Install .NET MAUI Workload run: | @@ -62,7 +62,7 @@ jobs: MobileProjectDirectory=`dirname $MobileProject` echo $MobileProjectDirectory - dotnet build $MobileProjectDirectory -f:net7.0-ios -c Release + dotnet build $MobileProjectDirectory -f:net8.0-ios -c Release MacCatalyst: runs-on: macos-13 @@ -70,10 +70,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: "7.0.x" + dotnet-version: "8.0.x" - name: Install .NET MAUI Workload run: | @@ -92,7 +92,7 @@ jobs: MobileProjectDirectory=`dirname $MobileProject` echo $MobileProjectDirectory - dotnet build $MobileProjectDirectory -f:net7.0-maccatalyst -c Release + dotnet build $MobileProjectDirectory -f:net8.0-maccatalyst -c Release Windows: runs-on: windows-latest @@ -105,10 +105,10 @@ jobs: distribution: 'microsoft' java-version: '11' - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: "7.0.x" + dotnet-version: "8.0.x" - name: Install .NET MAUI Workload run: | @@ -116,7 +116,7 @@ jobs: - name: Build Windows App run: | - dotnet build ./samples/GitStatus.Mobile/ -c Release -f net7.0-windows10.0.19041.0 + dotnet build ./samples/GitStatus.Mobile/ -c Release -f net8.0-windows10.0.19041.0 API: runs-on: macos-latest @@ -124,10 +124,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build API App run: | @@ -145,10 +145,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build Console App run: | @@ -166,10 +166,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build Web App run: | @@ -187,10 +187,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET v7.0 + - name: Setup .NET v8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build Web App run: | diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 381e1a8..ecdd347 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -16,12 +16,13 @@ jobs: GitHubPersonalAccessToken: ${{ secrets.GitHubPersonalAccessToken }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | + 8.0.x 7.0.x 6.0.x 3.1.x diff --git a/.gitignore b/.gitignore index 8d295e7..26ed1d7 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ obj/ ### VisualStudioCode ### .vscode/* +**/.meteor/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json diff --git a/Directory.Build.props b/Directory.Build.props index 3a35e28..bd4676f 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,21 +1,42 @@  - - latest - enable - nullable - True - false - true - - - - - - - nullable,CS1570,CS1571,CS1572,CS1573,CS1574,CS1734 - - - true - - \ No newline at end of file + + enable + NETSDK1023 + false + latest + enable + true + true + net8.0 + true + false + true + + + nullable,CS0419,CS1570,CS1571,CS1572,CS1573,CS1574,CS1580,CS1581,CS1584,CS1587,CS1589,CS1590,CS1591,CS1592,CS1598,CS1658,CS1710,CS1711,CS1712,CS1723,CS1734,xUnit1012,xUnit2021 + + diff --git a/Directory.Build.targets b/Directory.Build.targets new file mode 100644 index 0000000..01b7a10 --- /dev/null +++ b/Directory.Build.targets @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GitHubApiStatus.sln b/GitHubApiStatus.sln index e2853ec..454d4a0 100644 --- a/GitHubApiStatus.sln +++ b/GitHubApiStatus.sln @@ -32,6 +32,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig Directory.Build.props = Directory.Build.props + Directory.Build.targets = Directory.Build.targets global.json = global.json EndProjectSection EndProject diff --git a/README.md b/README.md index 6a54372..5e67457 100644 --- a/README.md +++ b/README.md @@ -84,10 +84,10 @@ public int GetRemainingRequestCount(HttpResponseHeaders httpResponseHeaders) - Get the number of GitHub API Requests remaining - Parses the `X-RateLimit-Remaining` header and return its `int` value -#### HasReachedMaximimApiCallLimit +#### HasReachedMaximumApiCallLimit ```csharp -public bool HasReachedMaximimApiCallLimit(HttpResponseHeaders httpResponseHeaders) +public bool HasReachedMaximumApiCallLimit(HttpResponseHeaders httpResponseHeaders) ``` - Determines whether the maximum number of requests - Parses the `X-RateLimit-Remaining` header and returns wether or not it is greater than 0 @@ -253,7 +253,7 @@ static async Task Main(string[] args) bool isAuthenticated = gitHubApiStatusService.IsResponseFromAuthenticatedRequest(restApiResponse.Headers); - bool hasReachedMaximumApiLimit = gitHubApiStatusService.HasReachedMaximimApiCallLimit(restApiResponse.Headers); + bool hasReachedMaximumApiLimit = gitHubApiStatusService.HasReachedMaximumApiCallLimit(restApiResponse.Headers); Console.WriteLine($"What is the GitHub REST API Rate Limit? {rateLimit}"); // What is the GitHub REST API Rate Limit? 60 diff --git a/global.json b/global.json index e23437b..e972eb1 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.100", - "rollForward": "latestMajor" + "version": "8.0.300", + "rollForward": "latestFeature" } } diff --git a/samples/GitStatus.API/GetRateLimits.cs b/samples/GitStatus.API/GetRateLimits.cs index 74e0215..498e1d3 100644 --- a/samples/GitStatus.API/GetRateLimits.cs +++ b/samples/GitStatus.API/GetRateLimits.cs @@ -1,6 +1,4 @@ using System.Net; -using System.Threading; -using System.Threading.Tasks; using GitHubApiStatus; using Microsoft.Azure.Functions.Worker; using Microsoft.Azure.Functions.Worker.Http; diff --git a/samples/GitStatus.API/GitStatus.API.csproj b/samples/GitStatus.API/GitStatus.API.csproj index 3a98105..0e182d8 100644 --- a/samples/GitStatus.API/GitStatus.API.csproj +++ b/samples/GitStatus.API/GitStatus.API.csproj @@ -1,7 +1,7 @@ - net7.0 + $(LatestSupportedNetVersion) v4 Exe <_FunctionsSkipCleanOutput>true diff --git a/samples/GitStatus.API/Program.cs b/samples/GitStatus.API/Program.cs index 58b3897..def431a 100644 --- a/samples/GitStatus.API/Program.cs +++ b/samples/GitStatus.API/Program.cs @@ -1,6 +1,4 @@ -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; +using System.Net.Http.Headers; using GitHubApiStatus.Extensions; using GitStatus.Shared; using Microsoft.Extensions.Configuration; diff --git a/samples/GitStatus.ConsoleApp/GitStatus.ConsoleApp.csproj b/samples/GitStatus.ConsoleApp/GitStatus.ConsoleApp.csproj index f66c92f..9a4a43a 100644 --- a/samples/GitStatus.ConsoleApp/GitStatus.ConsoleApp.csproj +++ b/samples/GitStatus.ConsoleApp/GitStatus.ConsoleApp.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + $(LatestSupportedNetVersion) GitStatus.ConsoleApp diff --git a/samples/GitStatus.ConsoleApp/Program.cs b/samples/GitStatus.ConsoleApp/Program.cs index 9cff257..82f4925 100644 --- a/samples/GitStatus.ConsoleApp/Program.cs +++ b/samples/GitStatus.ConsoleApp/Program.cs @@ -1,29 +1,26 @@ -using System; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; +using System.Net.Http.Headers; using GitHubApiStatus; using GitStatus.Shared; -namespace GitStatus.ConsoleApp; - -class Program -{ - static readonly HttpClient _client = CreateGitHubHttpClient(new AuthenticationHeaderValue(GitHubConstants.AuthScheme, GitHubConstants.PersonalAccessToken), new ProductHeaderValue(nameof(GitStatus))); - static readonly GitHubApiStatusService _gitHubApiStatusService = new(_client); - - static async Task Main(string[] args) - { - var restApiRateLimitDataFromHeaders = await GetRestApiRateLimitDataFromHeaders(); - +namespace GitStatus.ConsoleApp; + +class Program +{ + static readonly HttpClient _client = CreateGitHubHttpClient(new AuthenticationHeaderValue(GitHubConstants.AuthScheme, GitHubConstants.PersonalAccessToken), new ProductHeaderValue(nameof(GitStatus))); + static readonly GitHubApiStatusService _gitHubApiStatusService = new(_client); + + static async Task Main(string[] args) + { + var restApiRateLimitDataFromHeaders = await GetRestApiRateLimitDataFromHeaders(); + Console.WriteLine($"What is the GitHub REST API Rate Limit? {restApiRateLimitDataFromHeaders.RateLimit}"); // What is the GitHub REST API Rate Limit? 5000 Console.WriteLine($"Have I reached the Maximum REST API Limit? {restApiRateLimitDataFromHeaders.HasReachedMaximumApiLimit}"); // Have I reached the Maximum REST API Limit? False Console.WriteLine($"How many REST API requests do I have remaining? {restApiRateLimitDataFromHeaders.RemainingRequestCount}"); // How many REST API requests do I have remaining? 4956 Console.WriteLine($"How long until the GitHub REST API Rate Limit resets? {restApiRateLimitDataFromHeaders.RateLimitTimeRemaining}"); // How long until the GitHub REST API Rate Limit resets? 00:29:12.4134330 Console.WriteLine($"Did the GitHub REST API Request include a Bearer Token? {restApiRateLimitDataFromHeaders.IsResponseFromAuthenticatedRequest}"); // Did GitHub REST API Request include a Bearer Token? True - Console.WriteLine(); - + Console.WriteLine(); + var apiRateLimits = await GetApiRateLimits(); // REST API Results @@ -72,40 +69,40 @@ static async Task Main(string[] args) Console.WriteLine($"How long until the GitHub Code Scanning Upload API Rate Limit resets? {apiRateLimits.CodeScanningUpload.RateLimitReset_TimeRemaining}"); // How long until the GitHub Code Scanning Upload API Rate Limit resets? 00:59:59.8033455 Console.WriteLine($"When does the GitHub Code Scanning Upload API Rate Limit reset? {apiRateLimits.CodeScanningUpload.RateLimitReset_DateTime}"); // When does the GitHub Code Scanning Upload API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00 - Console.WriteLine(); - } - - static async Task<(TimeSpan RateLimitTimeRemaining, int RateLimit, int RemainingRequestCount, bool IsResponseFromAuthenticatedRequest, bool HasReachedMaximumApiLimit)> GetRestApiRateLimitDataFromHeaders() - { - HttpResponseMessage restApiResponse = await _client.GetAsync($"{GitHubConstants.GitHubRestApiUrl}/repos/brminnick/GitHubApiStatus"); - restApiResponse.EnsureSuccessStatusCode(); - - TimeSpan rateLimitTimeRemaining = _gitHubApiStatusService.GetRateLimitTimeRemaining(restApiResponse.Headers); - - int rateLimit = _gitHubApiStatusService.GetRateLimit(restApiResponse.Headers); - int remainingRequestCount = _gitHubApiStatusService.GetRemainingRequestCount(restApiResponse.Headers); - - bool isResponseFromAuthenticatedRequest = _gitHubApiStatusService.IsResponseFromAuthenticatedRequest(restApiResponse.Headers); - - bool hasReachedMaximumApiLimit = _gitHubApiStatusService.HasReachedMaximimApiCallLimit(restApiResponse.Headers); - - return (rateLimitTimeRemaining, rateLimit, remainingRequestCount, isResponseFromAuthenticatedRequest, hasReachedMaximumApiLimit); - } - - static Task GetApiRateLimits() - { - if (string.IsNullOrWhiteSpace(GitHubConstants.PersonalAccessToken)) - throw new ArgumentException("GitHubConstants.PersonalAccessToken Cannot be Empty"); - - return _gitHubApiStatusService.GetApiRateLimits(); - } - - static HttpClient CreateGitHubHttpClient(in AuthenticationHeaderValue authenticationHeaderValue, in ProductHeaderValue productHeaderValue) - { - var client = new HttpClient(); - client.DefaultRequestHeaders.Authorization = authenticationHeaderValue; - client.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(productHeaderValue)); - - return client; - } + Console.WriteLine(); + } + + static async Task<(TimeSpan RateLimitTimeRemaining, int RateLimit, int RemainingRequestCount, bool IsResponseFromAuthenticatedRequest, bool HasReachedMaximumApiLimit)> GetRestApiRateLimitDataFromHeaders() + { + HttpResponseMessage restApiResponse = await _client.GetAsync($"{GitHubConstants.GitHubRestApiUrl}/repos/brminnick/GitHubApiStatus"); + restApiResponse.EnsureSuccessStatusCode(); + + TimeSpan rateLimitTimeRemaining = _gitHubApiStatusService.GetRateLimitTimeRemaining(restApiResponse.Headers); + + int rateLimit = _gitHubApiStatusService.GetRateLimit(restApiResponse.Headers); + int remainingRequestCount = _gitHubApiStatusService.GetRemainingRequestCount(restApiResponse.Headers); + + bool isResponseFromAuthenticatedRequest = _gitHubApiStatusService.IsResponseFromAuthenticatedRequest(restApiResponse.Headers); + + bool hasReachedMaximumApiLimit = _gitHubApiStatusService.HasReachedMaximumApiCallLimit(restApiResponse.Headers); + + return (rateLimitTimeRemaining, rateLimit, remainingRequestCount, isResponseFromAuthenticatedRequest, hasReachedMaximumApiLimit); + } + + static Task GetApiRateLimits() + { + if (string.IsNullOrWhiteSpace(GitHubConstants.PersonalAccessToken)) + throw new ArgumentException("GitHubConstants.PersonalAccessToken Cannot be Empty"); + + return _gitHubApiStatusService.GetApiRateLimits(); + } + + static HttpClient CreateGitHubHttpClient(in AuthenticationHeaderValue authenticationHeaderValue, in ProductHeaderValue productHeaderValue) + { + var client = new HttpClient(); + client.DefaultRequestHeaders.Authorization = authenticationHeaderValue; + client.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(productHeaderValue)); + + return client; + } } \ No newline at end of file diff --git a/samples/GitStatus.Mobile/.meteor/generated/CommunityToolkit.Maui.json b/samples/GitStatus.Mobile/.meteor/generated/CommunityToolkit.Maui.json new file mode 100644 index 0000000..6bfa4ad --- /dev/null +++ b/samples/GitStatus.Mobile/.meteor/generated/CommunityToolkit.Maui.json @@ -0,0 +1 @@ +{"version":"4.5.7","xmlns":"http://schemas.microsoft.com/dotnet/2022/maui/toolkit","assembly":"CommunityToolkit.Maui","types":[{"name":"DockLayout","type":"CommunityToolkit.Maui.Layouts.DockLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ShouldExpandLastChild","type":"CommunityToolkit.Maui.Layouts.DockLayout.ShouldExpandLastChild"},{"name":"HorizontalSpacing","type":"CommunityToolkit.Maui.Layouts.DockLayout.HorizontalSpacing"},{"name":"VerticalSpacing","type":"CommunityToolkit.Maui.Layouts.DockLayout.VerticalSpacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"DockPosition","type":"CommunityToolkit.Maui.Layouts.DockLayout.DockPosition","values":[{"name":"value__","type":"CommunityToolkit.Maui.Core.DockPosition.value__"},{"name":"None","type":"CommunityToolkit.Maui.Core.DockPosition.None"},{"name":"Top","type":"CommunityToolkit.Maui.Core.DockPosition.Top"},{"name":"Left","type":"CommunityToolkit.Maui.Core.DockPosition.Left"},{"name":"Right","type":"CommunityToolkit.Maui.Core.DockPosition.Right"},{"name":"Bottom","type":"CommunityToolkit.Maui.Core.DockPosition.Bottom"}],"isAttached":true}]},{"name":"UniformItemsLayout","type":"CommunityToolkit.Maui.Layouts.UniformItemsLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MaxRows","type":"CommunityToolkit.Maui.Layouts.UniformItemsLayout.MaxRows"},{"name":"MaxColumns","type":"CommunityToolkit.Maui.Layouts.UniformItemsLayout.MaxColumns"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GravatarImageSource","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.IsEmpty"},{"name":"CacheValidity","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.CacheValidity","values":[{"name":"Zero","type":"System.TimeSpan.Zero"},{"name":"MaxValue","type":"System.TimeSpan.MaxValue"},{"name":"MinValue","type":"System.TimeSpan.MinValue"},{"name":"NanosecondsPerTick","type":"System.TimeSpan.NanosecondsPerTick"},{"name":"TicksPerMicrosecond","type":"System.TimeSpan.TicksPerMicrosecond"},{"name":"TicksPerMillisecond","type":"System.TimeSpan.TicksPerMillisecond"},{"name":"TicksPerSecond","type":"System.TimeSpan.TicksPerSecond"},{"name":"TicksPerMinute","type":"System.TimeSpan.TicksPerMinute"},{"name":"TicksPerHour","type":"System.TimeSpan.TicksPerHour"},{"name":"TicksPerDay","type":"System.TimeSpan.TicksPerDay"}]},{"name":"CachingEnabled","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.CachingEnabled"},{"name":"IsDisposed","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.IsDisposed"},{"name":"Email","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.Email"},{"name":"Image","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.Image","values":[{"name":"value__","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.value__"},{"name":"MysteryPerson","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.MysteryPerson"},{"name":"FileNotFound","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.FileNotFound"},{"name":"Identicon","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.Identicon"},{"name":"MonsterId","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.MonsterId"},{"name":"Wavatar","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.Wavatar"},{"name":"Retro","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.Retro"},{"name":"Robohash","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.Robohash"},{"name":"Blank","type":"CommunityToolkit.Maui.ImageSources.DefaultImage.Blank"}]},{"name":"Uri","type":"CommunityToolkit.Maui.ImageSources.GravatarImageSource.Uri"},{"name":"Stream","type":"Microsoft.Maui.Controls.StreamImageSource.Stream"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Popup","type":"CommunityToolkit.Maui.Views.Popup","doc":null,"attributes":[{"name":"Closed","type":"CommunityToolkit.Maui.Views.Popup.EventHandler\u00601","isEvent":true},{"name":"Opened","type":"CommunityToolkit.Maui.Views.Popup.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Result","type":"CommunityToolkit.Maui.Views.Popup.Result"},{"name":"Content","type":"CommunityToolkit.Maui.Views.Popup.Content"},{"name":"Color","type":"CommunityToolkit.Maui.Views.Popup.Color"},{"name":"VerticalOptions","type":"CommunityToolkit.Maui.Views.Popup.VerticalOptions","values":[{"name":"value__","type":"Microsoft.Maui.Primitives.LayoutAlignment.value__"},{"name":"Fill","type":"Microsoft.Maui.Primitives.LayoutAlignment.Fill"},{"name":"Start","type":"Microsoft.Maui.Primitives.LayoutAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.Primitives.LayoutAlignment.Center"},{"name":"End","type":"Microsoft.Maui.Primitives.LayoutAlignment.End"}]},{"name":"HorizontalOptions","type":"CommunityToolkit.Maui.Views.Popup.HorizontalOptions","values":[{"name":"value__","type":"Microsoft.Maui.Primitives.LayoutAlignment.value__"},{"name":"Fill","type":"Microsoft.Maui.Primitives.LayoutAlignment.Fill"},{"name":"Start","type":"Microsoft.Maui.Primitives.LayoutAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.Primitives.LayoutAlignment.Center"},{"name":"End","type":"Microsoft.Maui.Primitives.LayoutAlignment.End"}]},{"name":"Size","type":"CommunityToolkit.Maui.Views.Popup.Size","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"CanBeDismissedByTappingOutsideOfPopup","type":"CommunityToolkit.Maui.Views.Popup.CanBeDismissedByTappingOutsideOfPopup"},{"name":"Style","type":"CommunityToolkit.Maui.Views.Popup.Style"},{"name":"Anchor","type":"CommunityToolkit.Maui.Views.Popup.Anchor"},{"name":"Window","type":"CommunityToolkit.Maui.Views.Popup.Window"},{"name":"Resources","type":"CommunityToolkit.Maui.Views.Popup.Resources"},{"name":"StyleClass","type":"CommunityToolkit.Maui.Views.Popup.StyleClass"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AvatarView","type":"CommunityToolkit.Maui.Views.AvatarView","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Font","type":"CommunityToolkit.Maui.Views.AvatarView.Font"},{"name":"BorderColor","type":"CommunityToolkit.Maui.Views.AvatarView.BorderColor"},{"name":"BorderWidth","type":"CommunityToolkit.Maui.Views.AvatarView.BorderWidth"},{"name":"CharacterSpacing","type":"CommunityToolkit.Maui.Views.AvatarView.CharacterSpacing"},{"name":"CornerRadius","type":"CommunityToolkit.Maui.Views.AvatarView.CornerRadius"},{"name":"FontAttributes","type":"CommunityToolkit.Maui.Views.AvatarView.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontAutoScalingEnabled","type":"CommunityToolkit.Maui.Views.AvatarView.FontAutoScalingEnabled"},{"name":"FontFamily","type":"CommunityToolkit.Maui.Views.AvatarView.FontFamily"},{"name":"FontSize","type":"CommunityToolkit.Maui.Views.AvatarView.FontSize"},{"name":"ImageSource","type":"CommunityToolkit.Maui.Views.AvatarView.ImageSource"},{"name":"Text","type":"CommunityToolkit.Maui.Views.AvatarView.Text"},{"name":"TextColor","type":"CommunityToolkit.Maui.Views.AvatarView.TextColor"},{"name":"TextTransform","type":"CommunityToolkit.Maui.Views.AvatarView.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"Content","type":"Microsoft.Maui.Controls.Border.Content"},{"name":"Padding","type":"Microsoft.Maui.Controls.Border.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"StrokeShape","type":"Microsoft.Maui.Controls.Border.StrokeShape"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Border.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Border.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Border.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Border.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Border.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Border.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Border.StrokeMiterLimit"},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Border.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DrawingView","type":"CommunityToolkit.Maui.Views.DrawingView","doc":null,"attributes":[{"name":"DrawingLineCompleted","type":"CommunityToolkit.Maui.Views.DrawingView.EventHandler\u00601","isEvent":true},{"name":"DrawingLineStarted","type":"CommunityToolkit.Maui.Views.DrawingView.EventHandler\u00601","isEvent":true},{"name":"DrawingLineCancelled","type":"CommunityToolkit.Maui.Views.DrawingView.EventHandler\u00601","isEvent":true},{"name":"PointDrawn","type":"CommunityToolkit.Maui.Views.DrawingView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"LineColor","type":"CommunityToolkit.Maui.Views.DrawingView.LineColor"},{"name":"LineWidth","type":"CommunityToolkit.Maui.Views.DrawingView.LineWidth"},{"name":"DrawingLineCompletedCommand","type":"CommunityToolkit.Maui.Views.DrawingView.DrawingLineCompletedCommand"},{"name":"DrawingLineStartedCommand","type":"CommunityToolkit.Maui.Views.DrawingView.DrawingLineStartedCommand"},{"name":"DrawingLineCancelledCommand","type":"CommunityToolkit.Maui.Views.DrawingView.DrawingLineCancelledCommand"},{"name":"PointDrawnCommand","type":"CommunityToolkit.Maui.Views.DrawingView.PointDrawnCommand"},{"name":"Lines","type":"CommunityToolkit.Maui.Views.DrawingView.Lines"},{"name":"IsMultiLineModeEnabled","type":"CommunityToolkit.Maui.Views.DrawingView.IsMultiLineModeEnabled"},{"name":"ShouldClearOnFinish","type":"CommunityToolkit.Maui.Views.DrawingView.ShouldClearOnFinish"},{"name":"DrawAction","type":"CommunityToolkit.Maui.Views.DrawingView.DrawAction"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"ImageStream","type":"CommunityToolkit.Maui.Views.DrawingView.ImageStream","isAttached":true}]},{"name":"Expander","type":"CommunityToolkit.Maui.Views.Expander","doc":null,"attributes":[{"name":"ExpandedChanged","type":"CommunityToolkit.Maui.Views.Expander.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HandleHeaderTapped","type":"CommunityToolkit.Maui.Views.Expander.HandleHeaderTapped"},{"name":"Header","type":"CommunityToolkit.Maui.Views.Expander.Header"},{"name":"Content","type":"CommunityToolkit.Maui.Views.Expander.Content"},{"name":"IsExpanded","type":"CommunityToolkit.Maui.Views.Expander.IsExpanded"},{"name":"Direction","type":"CommunityToolkit.Maui.Views.Expander.Direction","values":[{"name":"value__","type":"CommunityToolkit.Maui.Core.ExpandDirection.value__"},{"name":"Down","type":"CommunityToolkit.Maui.Core.ExpandDirection.Down"},{"name":"Up","type":"CommunityToolkit.Maui.Core.ExpandDirection.Up"}]},{"name":"CommandParameter","type":"CommunityToolkit.Maui.Views.Expander.CommandParameter"},{"name":"Command","type":"CommunityToolkit.Maui.Views.Expander.Command"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"LazyView\u00601","type":"CommunityToolkit.Maui.Views.LazyView\u00601","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HasLazyViewLoaded","type":"CommunityToolkit.Maui.Views.LazyView.HasLazyViewLoaded"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SemanticOrderView","type":"CommunityToolkit.Maui.Views.SemanticOrderView","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ViewOrder","type":"CommunityToolkit.Maui.Views.SemanticOrderView.ViewOrder"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BoolToObjectConverter","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.DefaultConvertBackReturnValue"},{"name":"TrueObject","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.TrueObject"},{"name":"FalseObject","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.FalseObject"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BoolToObjectConverter\u00601","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.DefaultConvertBackReturnValue"},{"name":"TrueObject","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.TrueObject"},{"name":"FalseObject","type":"CommunityToolkit.Maui.Converters.BoolToObjectConverter\u00601.FalseObject"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ByteArrayToImageSourceConverter","type":"CommunityToolkit.Maui.Converters.ByteArrayToImageSourceConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ByteArrayToImageSourceConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.ByteArrayToImageSourceConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToBlackOrWhiteConverter","type":"CommunityToolkit.Maui.Converters.ColorToBlackOrWhiteConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToBlackOrWhiteConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToColorForTextConverter","type":"CommunityToolkit.Maui.Converters.ColorToColorForTextConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToColorForTextConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToGrayScaleColorConverter","type":"CommunityToolkit.Maui.Converters.ColorToGrayScaleColorConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToGrayScaleColorConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToInverseColorConverter","type":"CommunityToolkit.Maui.Converters.ColorToInverseColorConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToInverseColorConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToByteAlphaConverter","type":"CommunityToolkit.Maui.Converters.ColorToByteAlphaConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToByteAlphaConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToByteRedConverter","type":"CommunityToolkit.Maui.Converters.ColorToByteRedConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToByteRedConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToByteGreenConverter","type":"CommunityToolkit.Maui.Converters.ColorToByteGreenConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToByteGreenConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToByteBlueConverter","type":"CommunityToolkit.Maui.Converters.ColorToByteBlueConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToByteBlueConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToPercentCyanConverter","type":"CommunityToolkit.Maui.Converters.ColorToPercentCyanConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToPercentCyanConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToPercentMagentaConverter","type":"CommunityToolkit.Maui.Converters.ColorToPercentMagentaConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToPercentMagentaConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToPercentYellowConverter","type":"CommunityToolkit.Maui.Converters.ColorToPercentYellowConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToPercentYellowConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToPercentBlackKeyConverter","type":"CommunityToolkit.Maui.Converters.ColorToPercentBlackKeyConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToPercentBlackKeyConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToDegreeHueConverter","type":"CommunityToolkit.Maui.Converters.ColorToDegreeHueConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToDegreeHueConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToRgbStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToRgbStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToRgbStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToRgbaStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToRgbaStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToRgbaStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToHexRgbStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbStringConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToHexRgbaStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbaStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbaStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHexRgbaStringConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToCmykStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToCmykStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToCmykStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToCmykaStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToCmykaStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToCmykaStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToHslStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToHslStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHslStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColorToHslaStringConverter","type":"CommunityToolkit.Maui.Converters.ColorToHslaStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ColorToHslaStringConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CompareConverter","type":"CommunityToolkit.Maui.Converters.CompareConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.CompareConverter\u00601.DefaultConvertReturnValue"},{"name":"ComparingValue","type":"CommunityToolkit.Maui.Converters.CompareConverter\u00601.ComparingValue"},{"name":"ComparisonOperator","type":"CommunityToolkit.Maui.Converters.CompareConverter\u00601.ComparisonOperator","values":[{"name":"value__","type":"CommunityToolkit.Maui.Converters.OperatorType.value__"},{"name":"NotEqual","type":"CommunityToolkit.Maui.Converters.OperatorType.NotEqual"},{"name":"Smaller","type":"CommunityToolkit.Maui.Converters.OperatorType.Smaller"},{"name":"SmallerOrEqual","type":"CommunityToolkit.Maui.Converters.OperatorType.SmallerOrEqual"},{"name":"Equal","type":"CommunityToolkit.Maui.Converters.OperatorType.Equal"},{"name":"Greater","type":"CommunityToolkit.Maui.Converters.OperatorType.Greater"},{"name":"GreaterOrEqual","type":"CommunityToolkit.Maui.Converters.OperatorType.GreaterOrEqual"}]},{"name":"TrueObject","type":"CommunityToolkit.Maui.Converters.CompareConverter\u00601.TrueObject"},{"name":"FalseObject","type":"CommunityToolkit.Maui.Converters.CompareConverter\u00601.FalseObject"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DateTimeOffsetConverter","type":"CommunityToolkit.Maui.Converters.DateTimeOffsetConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.DateTimeOffsetConverter.DefaultConvertReturnValue","values":[{"name":"MinValue","type":"System.DateTime.MinValue"},{"name":"MaxValue","type":"System.DateTime.MaxValue"},{"name":"UnixEpoch","type":"System.DateTime.UnixEpoch"}]},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.DateTimeOffsetConverter.DefaultConvertBackReturnValue","values":[{"name":"MinValue","type":"System.DateTimeOffset.MinValue"},{"name":"MaxValue","type":"System.DateTimeOffset.MaxValue"},{"name":"UnixEpoch","type":"System.DateTimeOffset.UnixEpoch"}]},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DoubleToIntConverter","type":"CommunityToolkit.Maui.Converters.DoubleToIntConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.DoubleToIntConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.DoubleToIntConverter.DefaultConvertBackReturnValue"},{"name":"Ratio","type":"CommunityToolkit.Maui.Converters.DoubleToIntConverter.Ratio"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EnumToBoolConverter","type":"CommunityToolkit.Maui.Converters.EnumToBoolConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.EnumToBoolConverter.DefaultConvertReturnValue"},{"name":"TrueValues","type":"CommunityToolkit.Maui.Converters.EnumToBoolConverter.TrueValues"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EnumToIntConverter","type":"CommunityToolkit.Maui.Converters.EnumToIntConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.EnumToIntConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.EnumToIntConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImageResourceConverter","type":"CommunityToolkit.Maui.Converters.ImageResourceConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ImageResourceConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IndexToArrayItemConverter","type":"CommunityToolkit.Maui.Converters.IndexToArrayItemConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IndexToArrayItemConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.IndexToArrayItemConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IntToBoolConverter","type":"CommunityToolkit.Maui.Converters.IntToBoolConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IntToBoolConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.IntToBoolConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"InvertedBoolConverter","type":"CommunityToolkit.Maui.Converters.InvertedBoolConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.InvertedBoolConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.InvertedBoolConverter.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsEqualConverter","type":"CommunityToolkit.Maui.Converters.IsEqualConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsEqualConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsInRangeConverter","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter\u00601.DefaultConvertReturnValue"},{"name":"MinValue","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter\u00601.MinValue"},{"name":"MaxValue","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter\u00601.MaxValue"},{"name":"TrueObject","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter\u00601.TrueObject"},{"name":"FalseObject","type":"CommunityToolkit.Maui.Converters.IsInRangeConverter\u00601.FalseObject"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsListNotNullOrEmptyConverter","type":"CommunityToolkit.Maui.Converters.IsListNotNullOrEmptyConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsListNotNullOrEmptyConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsListNullOrEmptyConverter","type":"CommunityToolkit.Maui.Converters.IsListNullOrEmptyConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsListNullOrEmptyConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsNotEqualConverter","type":"CommunityToolkit.Maui.Converters.IsNotEqualConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsNotEqualConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsNotNullConverter","type":"CommunityToolkit.Maui.Converters.IsNotNullConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsNotNullConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsNullConverter","type":"CommunityToolkit.Maui.Converters.IsNullConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsNullConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsStringNotNullOrEmptyConverter","type":"CommunityToolkit.Maui.Converters.IsStringNotNullOrEmptyConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsStringNotNullOrEmptyConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsStringNotNullOrWhiteSpaceConverter","type":"CommunityToolkit.Maui.Converters.IsStringNotNullOrWhiteSpaceConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsStringNotNullOrWhiteSpaceConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsStringNullOrEmptyConverter","type":"CommunityToolkit.Maui.Converters.IsStringNullOrEmptyConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsStringNullOrEmptyConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IsStringNullOrWhiteSpaceConverter","type":"CommunityToolkit.Maui.Converters.IsStringNullOrWhiteSpaceConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.IsStringNullOrWhiteSpaceConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ItemTappedEventArgsConverter","type":"CommunityToolkit.Maui.Converters.ItemTappedEventArgsConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ItemTappedEventArgsConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ListToStringConverter","type":"CommunityToolkit.Maui.Converters.ListToStringConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.ListToStringConverter.DefaultConvertReturnValue"},{"name":"Separator","type":"CommunityToolkit.Maui.Converters.ListToStringConverter.Separator"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MathExpressionConverter","type":"CommunityToolkit.Maui.Converters.MathExpressionConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.MathExpressionConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MultiConverterParameter","type":"CommunityToolkit.Maui.Converters.MultiConverterParameter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ConverterType","type":"CommunityToolkit.Maui.Converters.MultiConverterParameter.ConverterType"},{"name":"Value","type":"CommunityToolkit.Maui.Converters.MultiConverterParameter.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SelectedItemEventArgsConverter","type":"CommunityToolkit.Maui.Converters.SelectedItemEventArgsConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.SelectedItemEventArgsConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00602.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StateToBooleanConverter","type":"CommunityToolkit.Maui.Converters.StateToBooleanConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.StateToBooleanConverter.DefaultConvertReturnValue"},{"name":"StateToCompare","type":"CommunityToolkit.Maui.Converters.StateToBooleanConverter.StateToCompare","values":[{"name":"value__","type":"CommunityToolkit.Maui.Converters.LayoutState.value__"},{"name":"None","type":"CommunityToolkit.Maui.Converters.LayoutState.None"},{"name":"Loading","type":"CommunityToolkit.Maui.Converters.LayoutState.Loading"},{"name":"Saving","type":"CommunityToolkit.Maui.Converters.LayoutState.Saving"},{"name":"Success","type":"CommunityToolkit.Maui.Converters.LayoutState.Success"},{"name":"Error","type":"CommunityToolkit.Maui.Converters.LayoutState.Error"},{"name":"Empty","type":"CommunityToolkit.Maui.Converters.LayoutState.Empty"},{"name":"Custom","type":"CommunityToolkit.Maui.Converters.LayoutState.Custom"}]},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue","values":[{"name":"value__","type":"CommunityToolkit.Maui.Converters.LayoutState.value__"},{"name":"None","type":"CommunityToolkit.Maui.Converters.LayoutState.None"},{"name":"Loading","type":"CommunityToolkit.Maui.Converters.LayoutState.Loading"},{"name":"Saving","type":"CommunityToolkit.Maui.Converters.LayoutState.Saving"},{"name":"Success","type":"CommunityToolkit.Maui.Converters.LayoutState.Success"},{"name":"Error","type":"CommunityToolkit.Maui.Converters.LayoutState.Error"},{"name":"Empty","type":"CommunityToolkit.Maui.Converters.LayoutState.Empty"},{"name":"Custom","type":"CommunityToolkit.Maui.Converters.LayoutState.Custom"}]},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StringToListConverter","type":"CommunityToolkit.Maui.Converters.StringToListConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.StringToListConverter.DefaultConvertReturnValue"},{"name":"Separator","type":"CommunityToolkit.Maui.Converters.StringToListConverter.Separator"},{"name":"Separators","type":"CommunityToolkit.Maui.Converters.StringToListConverter.Separators"},{"name":"SplitOptions","type":"CommunityToolkit.Maui.Converters.StringToListConverter.SplitOptions","values":[{"name":"value__","type":"System.StringSplitOptions.value__"},{"name":"None","type":"System.StringSplitOptions.None"},{"name":"RemoveEmptyEntries","type":"System.StringSplitOptions.RemoveEmptyEntries"},{"name":"TrimEntries","type":"System.StringSplitOptions.TrimEntries"}]},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TextCaseConverter","type":"CommunityToolkit.Maui.Converters.TextCaseConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.TextCaseConverter.DefaultConvertReturnValue"},{"name":"Type","type":"CommunityToolkit.Maui.Converters.TextCaseConverter.Type","values":[{"name":"value__","type":"CommunityToolkit.Maui.Converters.TextCaseType.value__"},{"name":"None","type":"CommunityToolkit.Maui.Converters.TextCaseType.None"},{"name":"Upper","type":"CommunityToolkit.Maui.Converters.TextCaseType.Upper"},{"name":"Lower","type":"CommunityToolkit.Maui.Converters.TextCaseType.Lower"},{"name":"FirstUpperRestLower","type":"CommunityToolkit.Maui.Converters.TextCaseType.FirstUpperRestLower"}]},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.BaseConverterOneWay\u00603.DefaultConvertBackReturnValue"},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ToType"},{"name":"ParamType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00603.ParamType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TimeSpanToSecondsConverter","type":"CommunityToolkit.Maui.Converters.TimeSpanToSecondsConverter","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"DefaultConvertReturnValue","type":"CommunityToolkit.Maui.Converters.TimeSpanToSecondsConverter.DefaultConvertReturnValue"},{"name":"DefaultConvertBackReturnValue","type":"CommunityToolkit.Maui.Converters.TimeSpanToSecondsConverter.DefaultConvertBackReturnValue","values":[{"name":"Zero","type":"System.TimeSpan.Zero"},{"name":"MaxValue","type":"System.TimeSpan.MaxValue"},{"name":"MinValue","type":"System.TimeSpan.MinValue"},{"name":"NanosecondsPerTick","type":"System.TimeSpan.NanosecondsPerTick"},{"name":"TicksPerMicrosecond","type":"System.TimeSpan.TicksPerMicrosecond"},{"name":"TicksPerMillisecond","type":"System.TimeSpan.TicksPerMillisecond"},{"name":"TicksPerSecond","type":"System.TimeSpan.TicksPerSecond"},{"name":"TicksPerMinute","type":"System.TimeSpan.TicksPerMinute"},{"name":"TicksPerHour","type":"System.TimeSpan.TicksPerHour"},{"name":"TicksPerDay","type":"System.TimeSpan.TicksPerDay"}]},{"name":"FromType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.FromType"},{"name":"ToType","type":"CommunityToolkit.Maui.Converters.BaseConverter\u00602.ToType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AnimationBehavior","type":"CommunityToolkit.Maui.Behaviors.AnimationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AnimateCommand","type":"CommunityToolkit.Maui.Behaviors.AnimationBehavior.AnimateCommand"},{"name":"AnimationType","type":"CommunityToolkit.Maui.Behaviors.AnimationBehavior.AnimationType"},{"name":"EventName","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventName"},{"name":"Command","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.Command"},{"name":"CommandParameter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.CommandParameter"},{"name":"EventArgsConverter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventArgsConverter"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SetFocusOnEntryCompletedBehavior","type":"CommunityToolkit.Maui.Behaviors.SetFocusOnEntryCompletedBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"NextElement","type":"CommunityToolkit.Maui.Behaviors.SetFocusOnEntryCompletedBehavior.NextElement","isAttached":true}]},{"name":"EventToCommandBehavior","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"EventName","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventName"},{"name":"Command","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.Command"},{"name":"CommandParameter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.CommandParameter"},{"name":"EventArgsConverter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventArgsConverter"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EventToCommandBehavior\u00601","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\u00601","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"EventName","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventName"},{"name":"Command","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.Command"},{"name":"CommandParameter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.CommandParameter"},{"name":"EventArgsConverter","type":"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior.EventArgsConverter"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImpliedOrderGridBehavior","type":"CommunityToolkit.Maui.Behaviors.ImpliedOrderGridBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ThrowOnLayoutWarning","type":"CommunityToolkit.Maui.Behaviors.ImpliedOrderGridBehavior.ThrowOnLayoutWarning"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MaskedBehavior","type":"CommunityToolkit.Maui.Behaviors.MaskedBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Mask","type":"CommunityToolkit.Maui.Behaviors.MaskedBehavior.Mask"},{"name":"UnmaskedCharacter","type":"CommunityToolkit.Maui.Behaviors.MaskedBehavior.UnmaskedCharacter"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MaxLengthReachedBehavior","type":"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior","doc":null,"attributes":[{"name":"MaxLengthReached","type":"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior.EventHandler\u00601","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior.Command"},{"name":"ShouldDismissKeyboardAutomatically","type":"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior.ShouldDismissKeyboardAutomatically"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IconTintColorBehavior","type":"CommunityToolkit.Maui.Behaviors.IconTintColorBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"TintColor","type":"CommunityToolkit.Maui.Behaviors.IconTintColorBehavior.TintColor"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SelectAllTextBehavior","type":"CommunityToolkit.Maui.Behaviors.SelectAllTextBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StatusBarBehavior","type":"CommunityToolkit.Maui.Behaviors.StatusBarBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"StatusBarColor","type":"CommunityToolkit.Maui.Behaviors.StatusBarBehavior.StatusBarColor"},{"name":"StatusBarStyle","type":"CommunityToolkit.Maui.Behaviors.StatusBarBehavior.StatusBarStyle","values":[{"name":"value__","type":"CommunityToolkit.Maui.Core.StatusBarStyle.value__"},{"name":"Default","type":"CommunityToolkit.Maui.Core.StatusBarStyle.Default"},{"name":"LightContent","type":"CommunityToolkit.Maui.Core.StatusBarStyle.LightContent"},{"name":"DarkContent","type":"CommunityToolkit.Maui.Core.StatusBarStyle.DarkContent"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ProgressBarAnimationBehavior","type":"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior","doc":null,"attributes":[{"name":"AnimationCompleted","type":"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Progress","type":"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior.Progress"},{"name":"Length","type":"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior.Length"},{"name":"Easing","type":"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior.Easing"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"UserStoppedTypingBehavior","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior.Command"},{"name":"CommandParameter","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior.CommandParameter"},{"name":"StoppedTypingTimeThreshold","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior.StoppedTypingTimeThreshold"},{"name":"MinimumLengthThreshold","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior.MinimumLengthThreshold"},{"name":"ShouldDismissKeyboardAutomatically","type":"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior.ShouldDismissKeyboardAutomatically"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CharactersValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CharacterType","type":"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior.CharacterType","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.CharacterType.value__"},{"name":"LowercaseLetter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.LowercaseLetter"},{"name":"UppercaseLetter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.UppercaseLetter"},{"name":"Letter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.Letter"},{"name":"Digit","type":"CommunityToolkit.Maui.Behaviors.CharacterType.Digit"},{"name":"Alphanumeric","type":"CommunityToolkit.Maui.Behaviors.CharacterType.Alphanumeric"},{"name":"Whitespace","type":"CommunityToolkit.Maui.Behaviors.CharacterType.Whitespace"},{"name":"NonAlphanumericSymbol","type":"CommunityToolkit.Maui.Behaviors.CharacterType.NonAlphanumericSymbol"},{"name":"LowercaseLatinLetter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.LowercaseLatinLetter"},{"name":"UppercaseLatinLetter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.UppercaseLatinLetter"},{"name":"LatinLetter","type":"CommunityToolkit.Maui.Behaviors.CharacterType.LatinLetter"},{"name":"Any","type":"CommunityToolkit.Maui.Behaviors.CharacterType.Any"}]},{"name":"MinimumCharacterTypeCount","type":"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior.MinimumCharacterTypeCount"},{"name":"MaximumCharacterTypeCount","type":"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior.MaximumCharacterTypeCount"},{"name":"MinimumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MinimumLength"},{"name":"MaximumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MaximumLength"},{"name":"DecorationFlags","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.DecorationFlags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.None"},{"name":"TrimStart","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimStart"},{"name":"TrimEnd","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimEnd"},{"name":"Trim","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.Trim"},{"name":"NullToEmpty","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NullToEmpty"},{"name":"NormalizeWhiteSpace","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NormalizeWhiteSpace"}]},{"name":"RegexPattern","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexPattern"},{"name":"RegexOptions","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexOptions","values":[{"name":"value__","type":"System.Text.RegularExpressions.RegexOptions.value__"},{"name":"None","type":"System.Text.RegularExpressions.RegexOptions.None"},{"name":"IgnoreCase","type":"System.Text.RegularExpressions.RegexOptions.IgnoreCase"},{"name":"Multiline","type":"System.Text.RegularExpressions.RegexOptions.Multiline"},{"name":"ExplicitCapture","type":"System.Text.RegularExpressions.RegexOptions.ExplicitCapture"},{"name":"Compiled","type":"System.Text.RegularExpressions.RegexOptions.Compiled"},{"name":"Singleline","type":"System.Text.RegularExpressions.RegexOptions.Singleline"},{"name":"IgnorePatternWhitespace","type":"System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace"},{"name":"RightToLeft","type":"System.Text.RegularExpressions.RegexOptions.RightToLeft"},{"name":"ECMAScript","type":"System.Text.RegularExpressions.RegexOptions.ECMAScript"},{"name":"CultureInvariant","type":"System.Text.RegularExpressions.RegexOptions.CultureInvariant"},{"name":"NonBacktracking","type":"System.Text.RegularExpressions.RegexOptions.NonBacktracking"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EmailValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.EmailValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MinimumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MinimumLength"},{"name":"MaximumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MaximumLength"},{"name":"DecorationFlags","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.DecorationFlags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.None"},{"name":"TrimStart","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimStart"},{"name":"TrimEnd","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimEnd"},{"name":"Trim","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.Trim"},{"name":"NullToEmpty","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NullToEmpty"},{"name":"NormalizeWhiteSpace","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NormalizeWhiteSpace"}]},{"name":"RegexPattern","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexPattern"},{"name":"RegexOptions","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexOptions","values":[{"name":"value__","type":"System.Text.RegularExpressions.RegexOptions.value__"},{"name":"None","type":"System.Text.RegularExpressions.RegexOptions.None"},{"name":"IgnoreCase","type":"System.Text.RegularExpressions.RegexOptions.IgnoreCase"},{"name":"Multiline","type":"System.Text.RegularExpressions.RegexOptions.Multiline"},{"name":"ExplicitCapture","type":"System.Text.RegularExpressions.RegexOptions.ExplicitCapture"},{"name":"Compiled","type":"System.Text.RegularExpressions.RegexOptions.Compiled"},{"name":"Singleline","type":"System.Text.RegularExpressions.RegexOptions.Singleline"},{"name":"IgnorePatternWhitespace","type":"System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace"},{"name":"RightToLeft","type":"System.Text.RegularExpressions.RegexOptions.RightToLeft"},{"name":"ECMAScript","type":"System.Text.RegularExpressions.RegexOptions.ECMAScript"},{"name":"CultureInvariant","type":"System.Text.RegularExpressions.RegexOptions.CultureInvariant"},{"name":"NonBacktracking","type":"System.Text.RegularExpressions.RegexOptions.NonBacktracking"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MultiValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior.Children"},{"name":"Errors","type":"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior.Errors"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Error","type":"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior.Error","isAttached":true}]},{"name":"NumericValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MinimumValue","type":"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior.MinimumValue"},{"name":"MaximumValue","type":"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior.MaximumValue"},{"name":"MinimumDecimalPlaces","type":"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior.MinimumDecimalPlaces"},{"name":"MaximumDecimalPlaces","type":"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior.MaximumDecimalPlaces"},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RequiredStringValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.RequiredStringValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"RequiredString","type":"CommunityToolkit.Maui.Behaviors.RequiredStringValidationBehavior.RequiredString"},{"name":"ExactMatch","type":"CommunityToolkit.Maui.Behaviors.RequiredStringValidationBehavior.ExactMatch"},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TextValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MinimumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MinimumLength"},{"name":"MaximumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MaximumLength"},{"name":"DecorationFlags","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.DecorationFlags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.None"},{"name":"TrimStart","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimStart"},{"name":"TrimEnd","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimEnd"},{"name":"Trim","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.Trim"},{"name":"NullToEmpty","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NullToEmpty"},{"name":"NormalizeWhiteSpace","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NormalizeWhiteSpace"}]},{"name":"RegexPattern","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexPattern"},{"name":"RegexOptions","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexOptions","values":[{"name":"value__","type":"System.Text.RegularExpressions.RegexOptions.value__"},{"name":"None","type":"System.Text.RegularExpressions.RegexOptions.None"},{"name":"IgnoreCase","type":"System.Text.RegularExpressions.RegexOptions.IgnoreCase"},{"name":"Multiline","type":"System.Text.RegularExpressions.RegexOptions.Multiline"},{"name":"ExplicitCapture","type":"System.Text.RegularExpressions.RegexOptions.ExplicitCapture"},{"name":"Compiled","type":"System.Text.RegularExpressions.RegexOptions.Compiled"},{"name":"Singleline","type":"System.Text.RegularExpressions.RegexOptions.Singleline"},{"name":"IgnorePatternWhitespace","type":"System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace"},{"name":"RightToLeft","type":"System.Text.RegularExpressions.RegexOptions.RightToLeft"},{"name":"ECMAScript","type":"System.Text.RegularExpressions.RegexOptions.ECMAScript"},{"name":"CultureInvariant","type":"System.Text.RegularExpressions.RegexOptions.CultureInvariant"},{"name":"NonBacktracking","type":"System.Text.RegularExpressions.RegexOptions.NonBacktracking"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"UriValidationBehavior","type":"CommunityToolkit.Maui.Behaviors.UriValidationBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"UriKind","type":"CommunityToolkit.Maui.Behaviors.UriValidationBehavior.UriKind","values":[{"name":"value__","type":"System.UriKind.value__"},{"name":"RelativeOrAbsolute","type":"System.UriKind.RelativeOrAbsolute"},{"name":"Absolute","type":"System.UriKind.Absolute"},{"name":"Relative","type":"System.UriKind.Relative"}]},{"name":"MinimumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MinimumLength"},{"name":"MaximumLength","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.MaximumLength"},{"name":"DecorationFlags","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.DecorationFlags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.None"},{"name":"TrimStart","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimStart"},{"name":"TrimEnd","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.TrimEnd"},{"name":"Trim","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.Trim"},{"name":"NullToEmpty","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NullToEmpty"},{"name":"NormalizeWhiteSpace","type":"CommunityToolkit.Maui.Behaviors.TextDecorationFlags.NormalizeWhiteSpace"}]},{"name":"RegexPattern","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexPattern"},{"name":"RegexOptions","type":"CommunityToolkit.Maui.Behaviors.TextValidationBehavior.RegexOptions","values":[{"name":"value__","type":"System.Text.RegularExpressions.RegexOptions.value__"},{"name":"None","type":"System.Text.RegularExpressions.RegexOptions.None"},{"name":"IgnoreCase","type":"System.Text.RegularExpressions.RegexOptions.IgnoreCase"},{"name":"Multiline","type":"System.Text.RegularExpressions.RegexOptions.Multiline"},{"name":"ExplicitCapture","type":"System.Text.RegularExpressions.RegexOptions.ExplicitCapture"},{"name":"Compiled","type":"System.Text.RegularExpressions.RegexOptions.Compiled"},{"name":"Singleline","type":"System.Text.RegularExpressions.RegexOptions.Singleline"},{"name":"IgnorePatternWhitespace","type":"System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace"},{"name":"RightToLeft","type":"System.Text.RegularExpressions.RegexOptions.RightToLeft"},{"name":"ECMAScript","type":"System.Text.RegularExpressions.RegexOptions.ECMAScript"},{"name":"CultureInvariant","type":"System.Text.RegularExpressions.RegexOptions.CultureInvariant"},{"name":"NonBacktracking","type":"System.Text.RegularExpressions.RegexOptions.NonBacktracking"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior\u00601.Value"},{"name":"IsValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsValid"},{"name":"IsRunning","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsRunning"},{"name":"IsNotValid","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.IsNotValid"},{"name":"ValidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValidStyle"},{"name":"InvalidStyle","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.InvalidStyle"},{"name":"Flags","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Flags","values":[{"name":"value__","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.value__"},{"name":"None","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.None"},{"name":"ValidateOnAttaching","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnAttaching"},{"name":"ValidateOnFocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnFocusing"},{"name":"ValidateOnUnfocusing","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnUnfocusing"},{"name":"ValidateOnValueChanged","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ValidateOnValueChanged"},{"name":"ForceMakeValidWhenFocused","type":"CommunityToolkit.Maui.Behaviors.ValidationFlags.ForceMakeValidWhenFocused"}]},{"name":"Value","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.Value"},{"name":"ValuePropertyName","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ValuePropertyName"},{"name":"ForceValidateCommand","type":"CommunityToolkit.Maui.Behaviors.ValidationBehavior.ForceValidateCommand"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"FadeAnimation","type":"CommunityToolkit.Maui.Animations.FadeAnimation","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Opacity","type":"CommunityToolkit.Maui.Animations.FadeAnimation.Opacity"},{"name":"Length","type":"CommunityToolkit.Maui.Animations.BaseAnimation\u00601.Length"},{"name":"Easing","type":"CommunityToolkit.Maui.Animations.BaseAnimation\u00601.Easing"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]}],"timestamp":"5/26/2024 2:59:43\u202FPM","target":"/Users/minnbran/GitHub/GitHubApiStatus/samples/GitStatus.Mobile/bin/Debug/net8.0-maccatalyst/maccatalyst-arm64"} diff --git a/samples/GitStatus.Mobile/.meteor/generated/GitStatus.Mobile.json b/samples/GitStatus.Mobile/.meteor/generated/GitStatus.Mobile.json new file mode 100644 index 0000000..783ba11 --- /dev/null +++ b/samples/GitStatus.Mobile/.meteor/generated/GitStatus.Mobile.json @@ -0,0 +1 @@ +{"version":"4.5.7","xmlns":null,"assembly":"GitStatus.Mobile","types":[{"name":"App","type":"GitStatus.App","doc":null,"attributes":[{"name":"RequestedThemeChanged","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopped","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopping","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushed","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageAppearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageDisappearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AppLinks","type":"Microsoft.Maui.Controls.Application.AppLinks"},{"name":"MainPage","type":"Microsoft.Maui.Controls.Application.MainPage"},{"name":"Resources","type":"Microsoft.Maui.Controls.Application.Resources"},{"name":"UserAppTheme","type":"Microsoft.Maui.Controls.Application.UserAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"PlatformAppTheme","type":"Microsoft.Maui.Controls.Application.PlatformAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"RequestedTheme","type":"Microsoft.Maui.Controls.Application.RequestedTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"Windows","type":"Microsoft.Maui.Controls.Application.Windows"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AppShell","type":"GitStatus.AppShell","doc":null,"attributes":[{"name":"Navigated","type":"Microsoft.Maui.Controls.Shell.EventHandler\u00601","isEvent":true},{"name":"Navigating","type":"Microsoft.Maui.Controls.Shell.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CurrentPage","type":"Microsoft.Maui.Controls.Shell.CurrentPage"},{"name":"FlyoutVerticalScrollMode","type":"Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ScrollMode.value__"},{"name":"Disabled","type":"Microsoft.Maui.Controls.ScrollMode.Disabled"},{"name":"Enabled","type":"Microsoft.Maui.Controls.ScrollMode.Enabled"},{"name":"Auto","type":"Microsoft.Maui.Controls.ScrollMode.Auto"}]},{"name":"FlyoutIcon","type":"Microsoft.Maui.Controls.Shell.FlyoutIcon"},{"name":"CurrentItem","type":"Microsoft.Maui.Controls.Shell.CurrentItem"},{"name":"CurrentState","type":"Microsoft.Maui.Controls.Shell.CurrentState"},{"name":"FlyoutBackgroundImage","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage"},{"name":"FlyoutBackgroundImageAspect","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect","values":[{"name":"value__","type":"Microsoft.Maui.Aspect.value__"},{"name":"AspectFit","type":"Microsoft.Maui.Aspect.AspectFit"},{"name":"AspectFill","type":"Microsoft.Maui.Aspect.AspectFill"},{"name":"Fill","type":"Microsoft.Maui.Aspect.Fill"},{"name":"Center","type":"Microsoft.Maui.Aspect.Center"}]},{"name":"FlyoutBackgroundColor","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor"},{"name":"FlyoutBackground","type":"Microsoft.Maui.Controls.Shell.FlyoutBackground"},{"name":"FlyoutBackdrop","type":"Microsoft.Maui.Controls.Shell.FlyoutBackdrop"},{"name":"FlyoutWidth","type":"Microsoft.Maui.Controls.Shell.FlyoutWidth"},{"name":"FlyoutHeight","type":"Microsoft.Maui.Controls.Shell.FlyoutHeight"},{"name":"FlyoutBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutBehavior","values":[{"name":"value__","type":"Microsoft.Maui.FlyoutBehavior.value__"},{"name":"Disabled","type":"Microsoft.Maui.FlyoutBehavior.Disabled"},{"name":"Flyout","type":"Microsoft.Maui.FlyoutBehavior.Flyout"},{"name":"Locked","type":"Microsoft.Maui.FlyoutBehavior.Locked"}]},{"name":"FlyoutHeader","type":"Microsoft.Maui.Controls.Shell.FlyoutHeader"},{"name":"FlyoutFooter","type":"Microsoft.Maui.Controls.Shell.FlyoutFooter"},{"name":"FlyoutHeaderBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.value__"},{"name":"Default","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default"},{"name":"Fixed","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed"},{"name":"Scroll","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll"},{"name":"CollapseOnScroll","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll"}]},{"name":"FlyoutHeaderTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate"},{"name":"FlyoutFooterTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate"},{"name":"FlyoutIsPresented","type":"Microsoft.Maui.Controls.Shell.FlyoutIsPresented"},{"name":"Items","type":"Microsoft.Maui.Controls.Shell.Items"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.Shell.ItemTemplate"},{"name":"MenuItemTemplate","type":"Microsoft.Maui.Controls.Shell.MenuItemTemplate"},{"name":"FlyoutItems","type":"Microsoft.Maui.Controls.Shell.FlyoutItems"},{"name":"FlyoutContent","type":"Microsoft.Maui.Controls.Shell.FlyoutContent"},{"name":"FlyoutContentTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutContentTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"FlyoutItemIsVisible","type":"Microsoft.Maui.Controls.Shell.FlyoutItemIsVisible","isAttached":true},{"name":"MenuItemTemplate","type":"Microsoft.Maui.Controls.Shell.MenuItemTemplate","isAttached":true},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.Shell.ItemTemplate","isAttached":true},{"name":"BackButtonBehavior","type":"Microsoft.Maui.Controls.Shell.BackButtonBehavior","isAttached":true},{"name":"PresentationMode","type":"Microsoft.Maui.Controls.Shell.PresentationMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.PresentationMode.value__"},{"name":"NotAnimated","type":"Microsoft.Maui.Controls.PresentationMode.NotAnimated"},{"name":"Animated","type":"Microsoft.Maui.Controls.PresentationMode.Animated"},{"name":"Modal","type":"Microsoft.Maui.Controls.PresentationMode.Modal"},{"name":"ModalAnimated","type":"Microsoft.Maui.Controls.PresentationMode.ModalAnimated"},{"name":"ModalNotAnimated","type":"Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated"}],"isAttached":true},{"name":"FlyoutBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutBehavior","values":[{"name":"value__","type":"Microsoft.Maui.FlyoutBehavior.value__"},{"name":"Disabled","type":"Microsoft.Maui.FlyoutBehavior.Disabled"},{"name":"Flyout","type":"Microsoft.Maui.FlyoutBehavior.Flyout"},{"name":"Locked","type":"Microsoft.Maui.FlyoutBehavior.Locked"}],"isAttached":true},{"name":"FlyoutWidth","type":"Microsoft.Maui.Controls.Shell.FlyoutWidth","isAttached":true},{"name":"FlyoutHeight","type":"Microsoft.Maui.Controls.Shell.FlyoutHeight","isAttached":true},{"name":"NavBarIsVisible","type":"Microsoft.Maui.Controls.Shell.NavBarIsVisible","isAttached":true},{"name":"NavBarHasShadow","type":"Microsoft.Maui.Controls.Shell.NavBarHasShadow","isAttached":true},{"name":"SearchHandler","type":"Microsoft.Maui.Controls.Shell.SearchHandler","isAttached":true},{"name":"TabBarIsVisible","type":"Microsoft.Maui.Controls.Shell.TabBarIsVisible","isAttached":true},{"name":"TitleView","type":"Microsoft.Maui.Controls.Shell.TitleView","isAttached":true},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.Shell.BackgroundColor","isAttached":true},{"name":"DisabledColor","type":"Microsoft.Maui.Controls.Shell.DisabledColor","isAttached":true},{"name":"ForegroundColor","type":"Microsoft.Maui.Controls.Shell.ForegroundColor","isAttached":true},{"name":"TabBarBackgroundColor","type":"Microsoft.Maui.Controls.Shell.TabBarBackgroundColor","isAttached":true},{"name":"TabBarDisabledColor","type":"Microsoft.Maui.Controls.Shell.TabBarDisabledColor","isAttached":true},{"name":"TabBarForegroundColor","type":"Microsoft.Maui.Controls.Shell.TabBarForegroundColor","isAttached":true},{"name":"TabBarTitleColor","type":"Microsoft.Maui.Controls.Shell.TabBarTitleColor","isAttached":true},{"name":"TabBarUnselectedColor","type":"Microsoft.Maui.Controls.Shell.TabBarUnselectedColor","isAttached":true},{"name":"TitleColor","type":"Microsoft.Maui.Controls.Shell.TitleColor","isAttached":true},{"name":"UnselectedColor","type":"Microsoft.Maui.Controls.Shell.UnselectedColor","isAttached":true},{"name":"FlyoutBackdrop","type":"Microsoft.Maui.Controls.Shell.FlyoutBackdrop","isAttached":true}]},{"name":"GraphQLApiStatusPage","type":"GitStatus.GraphQLApiStatusPage","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ContentPage.Content"},{"name":"HideSoftInputOnTapped","type":"Microsoft.Maui.Controls.ContentPage.HideSoftInputOnTapped"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedPage.ControlTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RestApiStatusPage","type":"GitStatus.RestApiStatusPage","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ContentPage.Content"},{"name":"HideSoftInputOnTapped","type":"Microsoft.Maui.Controls.ContentPage.HideSoftInputOnTapped"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedPage.ControlTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]}],"timestamp":"5/26/2024 2:59:44\u202FPM","target":"/Users/minnbran/GitHub/GitHubApiStatus/samples/GitStatus.Mobile/bin/Debug/net8.0-maccatalyst/maccatalyst-arm64"} diff --git a/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.Compatibility.json b/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.Compatibility.json new file mode 100644 index 0000000..5db0b1f --- /dev/null +++ b/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.Compatibility.json @@ -0,0 +1 @@ +{"version":"4.5.7","xmlns":null,"assembly":"Microsoft.Maui.Controls.Compatibility","types":[{"name":"NativeViewWrapper","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.NativeViewWrapper","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"GetDesiredSizeDelegate","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.NativeViewWrapper.GetDesiredSizeDelegate"},{"name":"LayoutSubViews","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.NativeViewWrapper.LayoutSubViews"},{"name":"NativeView","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.NativeViewWrapper.NativeView"},{"name":"SizeThatFitsDelegate","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.NativeViewWrapper.SizeThatFitsDelegate"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Platform","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.Platform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"NativeSize","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.Platform.NativeSize","isAttached":true},{"name":"Renderer","type":"Microsoft.Maui.Controls.Compatibility.Platform.iOS.Platform.Renderer","isAttached":true}]},{"name":"EmbeddedApplication","type":"Microsoft.Maui.Controls.Compatibility.EmbeddedApplication","doc":null,"attributes":[{"name":"RequestedThemeChanged","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopped","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopping","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushed","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageAppearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageDisappearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AppLinks","type":"Microsoft.Maui.Controls.Application.AppLinks"},{"name":"MainPage","type":"Microsoft.Maui.Controls.Application.MainPage"},{"name":"Resources","type":"Microsoft.Maui.Controls.Application.Resources"},{"name":"UserAppTheme","type":"Microsoft.Maui.Controls.Application.UserAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"PlatformAppTheme","type":"Microsoft.Maui.Controls.Application.PlatformAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"RequestedTheme","type":"Microsoft.Maui.Controls.Application.RequestedTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"Windows","type":"Microsoft.Maui.Controls.Application.Windows"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]}],"timestamp":"5/26/2024 2:59:44\u202FPM","target":"/Users/minnbran/GitHub/GitHubApiStatus/samples/GitStatus.Mobile/bin/Debug/net8.0-maccatalyst/maccatalyst-arm64"} diff --git a/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.json b/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.json new file mode 100644 index 0000000..eb1cb59 --- /dev/null +++ b/samples/GitStatus.Mobile/.meteor/generated/Microsoft.Maui.Controls.json @@ -0,0 +1 @@ +{"version":"4.5.7","xmlns":"http://schemas.microsoft.com/dotnet/2021/maui","assembly":"Microsoft.Maui.Controls","types":[{"name":"ActivityIndicator","type":"Microsoft.Maui.Controls.ActivityIndicator","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Color","type":"Microsoft.Maui.Controls.ActivityIndicator.Color"},{"name":"IsRunning","type":"Microsoft.Maui.Controls.ActivityIndicator.IsRunning"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AdaptiveTrigger","type":"Microsoft.Maui.Controls.AdaptiveTrigger","doc":null,"attributes":[{"name":"IsActiveChanged","type":"Microsoft.Maui.Controls.StateTriggerBase.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MinWindowHeight","type":"Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight"},{"name":"MinWindowWidth","type":"Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth"},{"name":"IsActive","type":"Microsoft.Maui.Controls.StateTriggerBase.IsActive"},{"name":"IsAttached","type":"Microsoft.Maui.Controls.StateTriggerBase.IsAttached"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Application","type":"Microsoft.Maui.Controls.Application","doc":null,"attributes":[{"name":"RequestedThemeChanged","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopped","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPopping","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushed","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ModalPushing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageAppearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"PageDisappearing","type":"Microsoft.Maui.Controls.Application.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AppLinks","type":"Microsoft.Maui.Controls.Application.AppLinks"},{"name":"MainPage","type":"Microsoft.Maui.Controls.Application.MainPage"},{"name":"Resources","type":"Microsoft.Maui.Controls.Application.Resources"},{"name":"UserAppTheme","type":"Microsoft.Maui.Controls.Application.UserAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"PlatformAppTheme","type":"Microsoft.Maui.Controls.Application.PlatformAppTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"RequestedTheme","type":"Microsoft.Maui.Controls.Application.RequestedTheme","values":[{"name":"value__","type":"Microsoft.Maui.ApplicationModel.AppTheme.value__"},{"name":"Unspecified","type":"Microsoft.Maui.ApplicationModel.AppTheme.Unspecified"},{"name":"Light","type":"Microsoft.Maui.ApplicationModel.AppTheme.Light"},{"name":"Dark","type":"Microsoft.Maui.ApplicationModel.AppTheme.Dark"}]},{"name":"Windows","type":"Microsoft.Maui.Controls.Application.Windows"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AppLinkEntry","type":"Microsoft.Maui.Controls.AppLinkEntry","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AppLinkUri","type":"Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri"},{"name":"Description","type":"Microsoft.Maui.Controls.AppLinkEntry.Description"},{"name":"IsLinkActive","type":"Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive"},{"name":"KeyValues","type":"Microsoft.Maui.Controls.AppLinkEntry.KeyValues"},{"name":"Thumbnail","type":"Microsoft.Maui.Controls.AppLinkEntry.Thumbnail"},{"name":"Title","type":"Microsoft.Maui.Controls.AppLinkEntry.Title"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Border","type":"Microsoft.Maui.Controls.Border","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.Border.Content"},{"name":"Padding","type":"Microsoft.Maui.Controls.Border.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"StrokeShape","type":"Microsoft.Maui.Controls.Border.StrokeShape"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Border.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Border.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Border.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Border.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Border.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Border.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Border.StrokeMiterLimit"},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Border.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BoxView","type":"Microsoft.Maui.Controls.BoxView","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Color","type":"Microsoft.Maui.Controls.BoxView.Color"},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.BoxView.CornerRadius"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Button","type":"Microsoft.Maui.Controls.Button","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.Button.EventHandler","isEvent":true},{"name":"Pressed","type":"Microsoft.Maui.Controls.Button.EventHandler","isEvent":true},{"name":"Released","type":"Microsoft.Maui.Controls.Button.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Padding","type":"Microsoft.Maui.Controls.Button.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"LineBreakMode","type":"Microsoft.Maui.Controls.Button.LineBreakMode","values":[{"name":"value__","type":"Microsoft.Maui.LineBreakMode.value__"},{"name":"NoWrap","type":"Microsoft.Maui.LineBreakMode.NoWrap"},{"name":"WordWrap","type":"Microsoft.Maui.LineBreakMode.WordWrap"},{"name":"CharacterWrap","type":"Microsoft.Maui.LineBreakMode.CharacterWrap"},{"name":"HeadTruncation","type":"Microsoft.Maui.LineBreakMode.HeadTruncation"},{"name":"TailTruncation","type":"Microsoft.Maui.LineBreakMode.TailTruncation"},{"name":"MiddleTruncation","type":"Microsoft.Maui.LineBreakMode.MiddleTruncation"}]},{"name":"BorderColor","type":"Microsoft.Maui.Controls.Button.BorderColor"},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.Button.CornerRadius"},{"name":"BorderWidth","type":"Microsoft.Maui.Controls.Button.BorderWidth"},{"name":"ContentLayout","type":"Microsoft.Maui.Controls.Button.ContentLayout"},{"name":"Command","type":"Microsoft.Maui.Controls.Button.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.Button.CommandParameter"},{"name":"ImageSource","type":"Microsoft.Maui.Controls.Button.ImageSource"},{"name":"Text","type":"Microsoft.Maui.Controls.Button.Text"},{"name":"TextColor","type":"Microsoft.Maui.Controls.Button.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.Button.CharacterSpacing"},{"name":"IsPressed","type":"Microsoft.Maui.Controls.Button.IsPressed"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.Button.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.Button.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.Button.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.Button.FontAutoScalingEnabled"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.Button.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CarouselPage","type":"Microsoft.Maui.Controls.CarouselPage","doc":null,"attributes":[{"name":"CurrentPageChanged","type":"Microsoft.Maui.Controls.MultiPage\u00601.EventHandler","isEvent":true},{"name":"PagesChanged","type":"Microsoft.Maui.Controls.MultiPage\u00601.NotifyCollectionChangedEventHandler","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.MultiPage\u00601.ItemsSource"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.MultiPage\u00601.ItemTemplate"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.MultiPage\u00601.SelectedItem"},{"name":"CurrentPage","type":"Microsoft.Maui.Controls.MultiPage\u00601.CurrentPage"},{"name":"Children","type":"Microsoft.Maui.Controls.MultiPage\u00601.Children"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EntryCell","type":"Microsoft.Maui.Controls.EntryCell","doc":null,"attributes":[{"name":"Completed","type":"Microsoft.Maui.Controls.EntryCell.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Tapped","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"Keyboard","type":"Microsoft.Maui.Controls.EntryCell.Keyboard"},{"name":"Label","type":"Microsoft.Maui.Controls.EntryCell.Label"},{"name":"LabelColor","type":"Microsoft.Maui.Controls.EntryCell.LabelColor"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.EntryCell.Placeholder"},{"name":"Text","type":"Microsoft.Maui.Controls.EntryCell.Text"},{"name":"ContextActions","type":"Microsoft.Maui.Controls.Cell.ContextActions"},{"name":"HasContextActions","type":"Microsoft.Maui.Controls.Cell.HasContextActions"},{"name":"IsContextActionsLegacyModeEnabled","type":"Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled"},{"name":"Height","type":"Microsoft.Maui.Controls.Cell.Height"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.Cell.IsEnabled"},{"name":"RenderHeight","type":"Microsoft.Maui.Controls.Cell.RenderHeight"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImageCell","type":"Microsoft.Maui.Controls.ImageCell","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Tapped","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ImageSource","type":"Microsoft.Maui.Controls.ImageCell.ImageSource"},{"name":"Command","type":"Microsoft.Maui.Controls.TextCell.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.TextCell.CommandParameter"},{"name":"Detail","type":"Microsoft.Maui.Controls.TextCell.Detail"},{"name":"DetailColor","type":"Microsoft.Maui.Controls.TextCell.DetailColor"},{"name":"Text","type":"Microsoft.Maui.Controls.TextCell.Text"},{"name":"TextColor","type":"Microsoft.Maui.Controls.TextCell.TextColor"},{"name":"ContextActions","type":"Microsoft.Maui.Controls.Cell.ContextActions"},{"name":"HasContextActions","type":"Microsoft.Maui.Controls.Cell.HasContextActions"},{"name":"IsContextActionsLegacyModeEnabled","type":"Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled"},{"name":"Height","type":"Microsoft.Maui.Controls.Cell.Height"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.Cell.IsEnabled"},{"name":"RenderHeight","type":"Microsoft.Maui.Controls.Cell.RenderHeight"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SwitchCell","type":"Microsoft.Maui.Controls.SwitchCell","doc":null,"attributes":[{"name":"OnChanged","type":"Microsoft.Maui.Controls.SwitchCell.EventHandler\u00601","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Tapped","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"OnColor","type":"Microsoft.Maui.Controls.SwitchCell.OnColor"},{"name":"On","type":"Microsoft.Maui.Controls.SwitchCell.On"},{"name":"Text","type":"Microsoft.Maui.Controls.SwitchCell.Text"},{"name":"ContextActions","type":"Microsoft.Maui.Controls.Cell.ContextActions"},{"name":"HasContextActions","type":"Microsoft.Maui.Controls.Cell.HasContextActions"},{"name":"IsContextActionsLegacyModeEnabled","type":"Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled"},{"name":"Height","type":"Microsoft.Maui.Controls.Cell.Height"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.Cell.IsEnabled"},{"name":"RenderHeight","type":"Microsoft.Maui.Controls.Cell.RenderHeight"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TextCell","type":"Microsoft.Maui.Controls.TextCell","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Tapped","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.TextCell.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.TextCell.CommandParameter"},{"name":"Detail","type":"Microsoft.Maui.Controls.TextCell.Detail"},{"name":"DetailColor","type":"Microsoft.Maui.Controls.TextCell.DetailColor"},{"name":"Text","type":"Microsoft.Maui.Controls.TextCell.Text"},{"name":"TextColor","type":"Microsoft.Maui.Controls.TextCell.TextColor"},{"name":"ContextActions","type":"Microsoft.Maui.Controls.Cell.ContextActions"},{"name":"HasContextActions","type":"Microsoft.Maui.Controls.Cell.HasContextActions"},{"name":"IsContextActionsLegacyModeEnabled","type":"Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled"},{"name":"Height","type":"Microsoft.Maui.Controls.Cell.Height"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.Cell.IsEnabled"},{"name":"RenderHeight","type":"Microsoft.Maui.Controls.Cell.RenderHeight"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ViewCell","type":"Microsoft.Maui.Controls.ViewCell","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"Tapped","type":"Microsoft.Maui.Controls.Cell.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"View","type":"Microsoft.Maui.Controls.ViewCell.View"},{"name":"ContextActions","type":"Microsoft.Maui.Controls.Cell.ContextActions"},{"name":"HasContextActions","type":"Microsoft.Maui.Controls.Cell.HasContextActions"},{"name":"IsContextActionsLegacyModeEnabled","type":"Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled"},{"name":"Height","type":"Microsoft.Maui.Controls.Cell.Height"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.Cell.IsEnabled"},{"name":"RenderHeight","type":"Microsoft.Maui.Controls.Cell.RenderHeight"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CheckBox","type":"Microsoft.Maui.Controls.CheckBox","doc":null,"attributes":[{"name":"CheckedChanged","type":"Microsoft.Maui.Controls.CheckBox.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Color","type":"Microsoft.Maui.Controls.CheckBox.Color"},{"name":"IsChecked","type":"Microsoft.Maui.Controls.CheckBox.IsChecked"},{"name":"Foreground","type":"Microsoft.Maui.Controls.CheckBox.Foreground"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ClickGestureRecognizer","type":"Microsoft.Maui.Controls.ClickGestureRecognizer","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.ClickGestureRecognizer.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.ClickGestureRecognizer.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter"},{"name":"NumberOfClicksRequired","type":"Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired"},{"name":"Buttons","type":"Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ButtonsMask.value__"},{"name":"Primary","type":"Microsoft.Maui.Controls.ButtonsMask.Primary"},{"name":"Secondary","type":"Microsoft.Maui.Controls.ButtonsMask.Secondary"}]},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ColumnDefinition","type":"Microsoft.Maui.Controls.ColumnDefinition","doc":null,"attributes":[{"name":"SizeChanged","type":"Microsoft.Maui.Controls.ColumnDefinition.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Width","type":"Microsoft.Maui.Controls.ColumnDefinition.Width","values":[{"name":"Auto","type":"Microsoft.Maui.GridLength.Auto"},{"name":"Star","type":"Microsoft.Maui.GridLength.Star"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CompareStateTrigger","type":"Microsoft.Maui.Controls.CompareStateTrigger","doc":null,"attributes":[{"name":"IsActiveChanged","type":"Microsoft.Maui.Controls.StateTriggerBase.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Property","type":"Microsoft.Maui.Controls.CompareStateTrigger.Property"},{"name":"Value","type":"Microsoft.Maui.Controls.CompareStateTrigger.Value"},{"name":"IsActive","type":"Microsoft.Maui.Controls.StateTriggerBase.IsActive"},{"name":"IsAttached","type":"Microsoft.Maui.Controls.StateTriggerBase.IsAttached"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ContentPage","type":"Microsoft.Maui.Controls.ContentPage","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ContentPage.Content"},{"name":"HideSoftInputOnTapped","type":"Microsoft.Maui.Controls.ContentPage.HideSoftInputOnTapped"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedPage.ControlTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ContentPresenter","type":"Microsoft.Maui.Controls.ContentPresenter","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ContentPresenter.Content"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ContentView","type":"Microsoft.Maui.Controls.ContentView","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DatePicker","type":"Microsoft.Maui.Controls.DatePicker","doc":null,"attributes":[{"name":"DateSelected","type":"Microsoft.Maui.Controls.DatePicker.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Date","type":"Microsoft.Maui.Controls.DatePicker.Date","values":[{"name":"MinValue","type":"System.DateTime.MinValue"},{"name":"MaxValue","type":"System.DateTime.MaxValue"},{"name":"UnixEpoch","type":"System.DateTime.UnixEpoch"}]},{"name":"Format","type":"Microsoft.Maui.Controls.DatePicker.Format"},{"name":"MaximumDate","type":"Microsoft.Maui.Controls.DatePicker.MaximumDate","values":[{"name":"MinValue","type":"System.DateTime.MinValue"},{"name":"MaxValue","type":"System.DateTime.MaxValue"},{"name":"UnixEpoch","type":"System.DateTime.UnixEpoch"}]},{"name":"MinimumDate","type":"Microsoft.Maui.Controls.DatePicker.MinimumDate","values":[{"name":"MinValue","type":"System.DateTime.MinValue"},{"name":"MaxValue","type":"System.DateTime.MaxValue"},{"name":"UnixEpoch","type":"System.DateTime.UnixEpoch"}]},{"name":"TextColor","type":"Microsoft.Maui.Controls.DatePicker.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.DatePicker.CharacterSpacing"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.DatePicker.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.DatePicker.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.DatePicker.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DeviceStateTrigger","type":"Microsoft.Maui.Controls.DeviceStateTrigger","doc":null,"attributes":[{"name":"IsActiveChanged","type":"Microsoft.Maui.Controls.StateTriggerBase.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Device","type":"Microsoft.Maui.Controls.DeviceStateTrigger.Device"},{"name":"IsActive","type":"Microsoft.Maui.Controls.StateTriggerBase.IsActive"},{"name":"IsAttached","type":"Microsoft.Maui.Controls.StateTriggerBase.IsAttached"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DragGestureRecognizer","type":"Microsoft.Maui.Controls.DragGestureRecognizer","doc":null,"attributes":[{"name":"DropCompleted","type":"Microsoft.Maui.Controls.DragGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"DragStarting","type":"Microsoft.Maui.Controls.DragGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CanDrag","type":"Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag"},{"name":"DropCompletedCommand","type":"Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand"},{"name":"DropCompletedCommandParameter","type":"Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter"},{"name":"DragStartingCommand","type":"Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand"},{"name":"DragStartingCommandParameter","type":"Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DropGestureRecognizer","type":"Microsoft.Maui.Controls.DropGestureRecognizer","doc":null,"attributes":[{"name":"DragLeave","type":"Microsoft.Maui.Controls.DropGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"DragOver","type":"Microsoft.Maui.Controls.DropGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"Drop","type":"Microsoft.Maui.Controls.DropGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AllowDrop","type":"Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop"},{"name":"DragOverCommand","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand"},{"name":"DragOverCommandParameter","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter"},{"name":"DragLeaveCommand","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand"},{"name":"DragLeaveCommandParameter","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter"},{"name":"DropCommand","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand"},{"name":"DropCommandParameter","type":"Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Editor","type":"Microsoft.Maui.Controls.Editor","doc":null,"attributes":[{"name":"Completed","type":"Microsoft.Maui.Controls.Editor.EventHandler","isEvent":true},{"name":"TextChanged","type":"Microsoft.Maui.Controls.InputView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AutoSize","type":"Microsoft.Maui.Controls.Editor.AutoSize","values":[{"name":"value__","type":"Microsoft.Maui.Controls.EditorAutoSizeOption.value__"},{"name":"Disabled","type":"Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled"},{"name":"TextChanges","type":"Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges"}]},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.Editor.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.Editor.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"MaxLength","type":"Microsoft.Maui.Controls.InputView.MaxLength"},{"name":"Text","type":"Microsoft.Maui.Controls.InputView.Text"},{"name":"Keyboard","type":"Microsoft.Maui.Controls.InputView.Keyboard"},{"name":"IsSpellCheckEnabled","type":"Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled"},{"name":"IsTextPredictionEnabled","type":"Microsoft.Maui.Controls.InputView.IsTextPredictionEnabled"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.InputView.IsReadOnly"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.InputView.Placeholder"},{"name":"PlaceholderColor","type":"Microsoft.Maui.Controls.InputView.PlaceholderColor"},{"name":"TextColor","type":"Microsoft.Maui.Controls.InputView.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.InputView.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.InputView.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"CursorPosition","type":"Microsoft.Maui.Controls.InputView.CursorPosition"},{"name":"SelectionLength","type":"Microsoft.Maui.Controls.InputView.SelectionLength"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.InputView.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.InputView.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.InputView.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.InputView.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Entry","type":"Microsoft.Maui.Controls.Entry","doc":null,"attributes":[{"name":"Completed","type":"Microsoft.Maui.Controls.Entry.EventHandler","isEvent":true},{"name":"TextChanged","type":"Microsoft.Maui.Controls.InputView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.Entry.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.Entry.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"IsPassword","type":"Microsoft.Maui.Controls.Entry.IsPassword"},{"name":"ReturnType","type":"Microsoft.Maui.Controls.Entry.ReturnType","values":[{"name":"value__","type":"Microsoft.Maui.ReturnType.value__"},{"name":"Default","type":"Microsoft.Maui.ReturnType.Default"},{"name":"Done","type":"Microsoft.Maui.ReturnType.Done"},{"name":"Go","type":"Microsoft.Maui.ReturnType.Go"},{"name":"Next","type":"Microsoft.Maui.ReturnType.Next"},{"name":"Search","type":"Microsoft.Maui.ReturnType.Search"},{"name":"Send","type":"Microsoft.Maui.ReturnType.Send"}]},{"name":"ReturnCommand","type":"Microsoft.Maui.Controls.Entry.ReturnCommand"},{"name":"ReturnCommandParameter","type":"Microsoft.Maui.Controls.Entry.ReturnCommandParameter"},{"name":"ClearButtonVisibility","type":"Microsoft.Maui.Controls.Entry.ClearButtonVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ClearButtonVisibility.value__"},{"name":"Never","type":"Microsoft.Maui.ClearButtonVisibility.Never"},{"name":"WhileEditing","type":"Microsoft.Maui.ClearButtonVisibility.WhileEditing"}]},{"name":"MaxLength","type":"Microsoft.Maui.Controls.InputView.MaxLength"},{"name":"Text","type":"Microsoft.Maui.Controls.InputView.Text"},{"name":"Keyboard","type":"Microsoft.Maui.Controls.InputView.Keyboard"},{"name":"IsSpellCheckEnabled","type":"Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled"},{"name":"IsTextPredictionEnabled","type":"Microsoft.Maui.Controls.InputView.IsTextPredictionEnabled"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.InputView.IsReadOnly"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.InputView.Placeholder"},{"name":"PlaceholderColor","type":"Microsoft.Maui.Controls.InputView.PlaceholderColor"},{"name":"TextColor","type":"Microsoft.Maui.Controls.InputView.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.InputView.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.InputView.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"CursorPosition","type":"Microsoft.Maui.Controls.InputView.CursorPosition"},{"name":"SelectionLength","type":"Microsoft.Maui.Controls.InputView.SelectionLength"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.InputView.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.InputView.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.InputView.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.InputView.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"FileImageSource","type":"Microsoft.Maui.Controls.FileImageSource","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.FileImageSource.IsEmpty"},{"name":"File","type":"Microsoft.Maui.Controls.FileImageSource.File"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"FlyoutPage","type":"Microsoft.Maui.Controls.FlyoutPage","doc":null,"attributes":[{"name":"IsPresentedChanged","type":"Microsoft.Maui.Controls.FlyoutPage.EventHandler","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Detail","type":"Microsoft.Maui.Controls.FlyoutPage.Detail"},{"name":"IsGestureEnabled","type":"Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled"},{"name":"IsPresented","type":"Microsoft.Maui.Controls.FlyoutPage.IsPresented"},{"name":"Flyout","type":"Microsoft.Maui.Controls.FlyoutPage.Flyout"},{"name":"FlyoutLayoutBehavior","type":"Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.value__"},{"name":"Default","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default"},{"name":"SplitOnLandscape","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape"},{"name":"Split","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split"},{"name":"Popover","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover"},{"name":"SplitOnPortrait","type":"Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait"}]},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"FontImageSource","type":"Microsoft.Maui.Controls.FontImageSource","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.FontImageSource.IsEmpty"},{"name":"Color","type":"Microsoft.Maui.Controls.FontImageSource.Color"},{"name":"FontFamily","type":"Microsoft.Maui.Controls.FontImageSource.FontFamily"},{"name":"Glyph","type":"Microsoft.Maui.Controls.FontImageSource.Glyph"},{"name":"Size","type":"Microsoft.Maui.Controls.FontImageSource.Size"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"FormattedString","type":"Microsoft.Maui.Controls.FormattedString","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Spans","type":"Microsoft.Maui.Controls.FormattedString.Spans"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Frame","type":"Microsoft.Maui.Controls.Frame","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HasShadow","type":"Microsoft.Maui.Controls.Frame.HasShadow"},{"name":"BorderColor","type":"Microsoft.Maui.Controls.Frame.BorderColor"},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.Frame.CornerRadius"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GestureElement","type":"Microsoft.Maui.Controls.GestureElement","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.GestureElement.GestureRecognizers"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GestureRecognizer","type":"Microsoft.Maui.Controls.GestureRecognizer","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GradientStop","type":"Microsoft.Maui.Controls.GradientStop","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Color","type":"Microsoft.Maui.Controls.GradientStop.Color"},{"name":"Offset","type":"Microsoft.Maui.Controls.GradientStop.Offset"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GraphicsView","type":"Microsoft.Maui.Controls.GraphicsView","doc":null,"attributes":[{"name":"StartHoverInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler\u00601","isEvent":true},{"name":"MoveHoverInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler\u00601","isEvent":true},{"name":"EndHoverInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler","isEvent":true},{"name":"StartInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler\u00601","isEvent":true},{"name":"DragInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler\u00601","isEvent":true},{"name":"EndInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler\u00601","isEvent":true},{"name":"CancelInteraction","type":"Microsoft.Maui.Controls.GraphicsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Drawable","type":"Microsoft.Maui.Controls.GraphicsView.Drawable"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"HtmlWebViewSource","type":"Microsoft.Maui.Controls.HtmlWebViewSource","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BaseUrl","type":"Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl"},{"name":"Html","type":"Microsoft.Maui.Controls.HtmlWebViewSource.Html"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImageBrush","type":"Microsoft.Maui.Controls.ImageBrush","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.ImageBrush.IsEmpty"},{"name":"ImageSource","type":"Microsoft.Maui.Controls.ImageBrush.ImageSource"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImageButton","type":"Microsoft.Maui.Controls.ImageButton","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.ImageButton.EventHandler","isEvent":true},{"name":"Pressed","type":"Microsoft.Maui.Controls.ImageButton.EventHandler","isEvent":true},{"name":"Released","type":"Microsoft.Maui.Controls.ImageButton.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BorderColor","type":"Microsoft.Maui.Controls.ImageButton.BorderColor"},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.ImageButton.CornerRadius"},{"name":"BorderWidth","type":"Microsoft.Maui.Controls.ImageButton.BorderWidth"},{"name":"Aspect","type":"Microsoft.Maui.Controls.ImageButton.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Aspect.value__"},{"name":"AspectFit","type":"Microsoft.Maui.Aspect.AspectFit"},{"name":"AspectFill","type":"Microsoft.Maui.Aspect.AspectFill"},{"name":"Fill","type":"Microsoft.Maui.Aspect.Fill"},{"name":"Center","type":"Microsoft.Maui.Aspect.Center"}]},{"name":"IsLoading","type":"Microsoft.Maui.Controls.ImageButton.IsLoading"},{"name":"IsPressed","type":"Microsoft.Maui.Controls.ImageButton.IsPressed"},{"name":"IsOpaque","type":"Microsoft.Maui.Controls.ImageButton.IsOpaque"},{"name":"Command","type":"Microsoft.Maui.Controls.ImageButton.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.ImageButton.CommandParameter"},{"name":"Source","type":"Microsoft.Maui.Controls.ImageButton.Source"},{"name":"Padding","type":"Microsoft.Maui.Controls.ImageButton.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Image","type":"Microsoft.Maui.Controls.Image","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Aspect","type":"Microsoft.Maui.Controls.Image.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Aspect.value__"},{"name":"AspectFit","type":"Microsoft.Maui.Aspect.AspectFit"},{"name":"AspectFill","type":"Microsoft.Maui.Aspect.AspectFill"},{"name":"Fill","type":"Microsoft.Maui.Aspect.Fill"},{"name":"Center","type":"Microsoft.Maui.Aspect.Center"}]},{"name":"IsLoading","type":"Microsoft.Maui.Controls.Image.IsLoading"},{"name":"IsOpaque","type":"Microsoft.Maui.Controls.Image.IsOpaque"},{"name":"IsAnimationPlaying","type":"Microsoft.Maui.Controls.Image.IsAnimationPlaying"},{"name":"Source","type":"Microsoft.Maui.Controls.Image.Source"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StreamImageSource","type":"Microsoft.Maui.Controls.StreamImageSource","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.StreamImageSource.IsEmpty"},{"name":"Stream","type":"Microsoft.Maui.Controls.StreamImageSource.Stream"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"UriImageSource","type":"Microsoft.Maui.Controls.UriImageSource","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.UriImageSource.IsEmpty"},{"name":"CacheValidity","type":"Microsoft.Maui.Controls.UriImageSource.CacheValidity","values":[{"name":"Zero","type":"System.TimeSpan.Zero"},{"name":"MaxValue","type":"System.TimeSpan.MaxValue"},{"name":"MinValue","type":"System.TimeSpan.MinValue"},{"name":"NanosecondsPerTick","type":"System.TimeSpan.NanosecondsPerTick"},{"name":"TicksPerMicrosecond","type":"System.TimeSpan.TicksPerMicrosecond"},{"name":"TicksPerMillisecond","type":"System.TimeSpan.TicksPerMillisecond"},{"name":"TicksPerSecond","type":"System.TimeSpan.TicksPerSecond"},{"name":"TicksPerMinute","type":"System.TimeSpan.TicksPerMinute"},{"name":"TicksPerHour","type":"System.TimeSpan.TicksPerHour"},{"name":"TicksPerDay","type":"System.TimeSpan.TicksPerDay"}]},{"name":"CachingEnabled","type":"Microsoft.Maui.Controls.UriImageSource.CachingEnabled"},{"name":"Uri","type":"Microsoft.Maui.Controls.UriImageSource.Uri"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ImmutableBrush","type":"Microsoft.Maui.Controls.ImmutableBrush","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Color","type":"Microsoft.Maui.Controls.ImmutableBrush.Color"},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.SolidColorBrush.IsEmpty"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IndicatorStackLayout","type":"Microsoft.Maui.Controls.IndicatorStackLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Orientation","type":"Microsoft.Maui.Controls.StackLayout.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Controls.StackOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.Controls.StackOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.Controls.StackOrientation.Horizontal"}]},{"name":"Spacing","type":"Microsoft.Maui.Controls.StackBase.Spacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"IndicatorView","type":"Microsoft.Maui.Controls.IndicatorView","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IndicatorsShape","type":"Microsoft.Maui.Controls.IndicatorView.IndicatorsShape","values":[{"name":"value__","type":"Microsoft.Maui.Controls.IndicatorShape.value__"},{"name":"Circle","type":"Microsoft.Maui.Controls.IndicatorShape.Circle"},{"name":"Square","type":"Microsoft.Maui.Controls.IndicatorShape.Square"}]},{"name":"IndicatorLayout","type":"Microsoft.Maui.Controls.IndicatorView.IndicatorLayout"},{"name":"Position","type":"Microsoft.Maui.Controls.IndicatorView.Position"},{"name":"Count","type":"Microsoft.Maui.Controls.IndicatorView.Count"},{"name":"MaximumVisible","type":"Microsoft.Maui.Controls.IndicatorView.MaximumVisible"},{"name":"IndicatorTemplate","type":"Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate"},{"name":"HideSingle","type":"Microsoft.Maui.Controls.IndicatorView.HideSingle"},{"name":"IndicatorColor","type":"Microsoft.Maui.Controls.IndicatorView.IndicatorColor"},{"name":"SelectedIndicatorColor","type":"Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor"},{"name":"IndicatorSize","type":"Microsoft.Maui.Controls.IndicatorView.IndicatorSize"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.IndicatorView.ItemsSource"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"InputView","type":"Microsoft.Maui.Controls.InputView","doc":null,"attributes":[{"name":"TextChanged","type":"Microsoft.Maui.Controls.InputView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MaxLength","type":"Microsoft.Maui.Controls.InputView.MaxLength"},{"name":"Text","type":"Microsoft.Maui.Controls.InputView.Text"},{"name":"Keyboard","type":"Microsoft.Maui.Controls.InputView.Keyboard"},{"name":"IsSpellCheckEnabled","type":"Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled"},{"name":"IsTextPredictionEnabled","type":"Microsoft.Maui.Controls.InputView.IsTextPredictionEnabled"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.InputView.IsReadOnly"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.InputView.Placeholder"},{"name":"PlaceholderColor","type":"Microsoft.Maui.Controls.InputView.PlaceholderColor"},{"name":"TextColor","type":"Microsoft.Maui.Controls.InputView.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.InputView.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.InputView.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"CursorPosition","type":"Microsoft.Maui.Controls.InputView.CursorPosition"},{"name":"SelectionLength","type":"Microsoft.Maui.Controls.InputView.SelectionLength"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.InputView.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.InputView.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.InputView.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.InputView.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"DataTrigger","type":"Microsoft.Maui.Controls.DataTrigger","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Binding","type":"Microsoft.Maui.Controls.DataTrigger.Binding"},{"name":"Setters","type":"Microsoft.Maui.Controls.DataTrigger.Setters"},{"name":"Value","type":"Microsoft.Maui.Controls.DataTrigger.Value"},{"name":"EnterActions","type":"Microsoft.Maui.Controls.TriggerBase.EnterActions"},{"name":"ExitActions","type":"Microsoft.Maui.Controls.TriggerBase.ExitActions"},{"name":"IsSealed","type":"Microsoft.Maui.Controls.TriggerBase.IsSealed"},{"name":"TargetType","type":"Microsoft.Maui.Controls.TriggerBase.TargetType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EventTrigger","type":"Microsoft.Maui.Controls.EventTrigger","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Actions","type":"Microsoft.Maui.Controls.EventTrigger.Actions"},{"name":"Event","type":"Microsoft.Maui.Controls.EventTrigger.Event"},{"name":"EnterActions","type":"Microsoft.Maui.Controls.TriggerBase.EnterActions"},{"name":"ExitActions","type":"Microsoft.Maui.Controls.TriggerBase.ExitActions"},{"name":"IsSealed","type":"Microsoft.Maui.Controls.TriggerBase.IsSealed"},{"name":"TargetType","type":"Microsoft.Maui.Controls.TriggerBase.TargetType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MultiTrigger","type":"Microsoft.Maui.Controls.MultiTrigger","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Conditions","type":"Microsoft.Maui.Controls.MultiTrigger.Conditions"},{"name":"Setters","type":"Microsoft.Maui.Controls.MultiTrigger.Setters"},{"name":"EnterActions","type":"Microsoft.Maui.Controls.TriggerBase.EnterActions"},{"name":"ExitActions","type":"Microsoft.Maui.Controls.TriggerBase.ExitActions"},{"name":"IsSealed","type":"Microsoft.Maui.Controls.TriggerBase.IsSealed"},{"name":"TargetType","type":"Microsoft.Maui.Controls.TriggerBase.TargetType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Trigger","type":"Microsoft.Maui.Controls.Trigger","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Property","type":"Microsoft.Maui.Controls.Trigger.Property"},{"name":"Setters","type":"Microsoft.Maui.Controls.Trigger.Setters"},{"name":"Value","type":"Microsoft.Maui.Controls.Trigger.Value"},{"name":"EnterActions","type":"Microsoft.Maui.Controls.TriggerBase.EnterActions"},{"name":"ExitActions","type":"Microsoft.Maui.Controls.TriggerBase.ExitActions"},{"name":"IsSealed","type":"Microsoft.Maui.Controls.TriggerBase.IsSealed"},{"name":"TargetType","type":"Microsoft.Maui.Controls.TriggerBase.TargetType"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CarouselView","type":"Microsoft.Maui.Controls.CarouselView","doc":null,"attributes":[{"name":"CurrentItemChanged","type":"Microsoft.Maui.Controls.CarouselView.EventHandler\u00601","isEvent":true},{"name":"PositionChanged","type":"Microsoft.Maui.Controls.CarouselView.EventHandler\u00601","isEvent":true},{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Loop","type":"Microsoft.Maui.Controls.CarouselView.Loop"},{"name":"PeekAreaInsets","type":"Microsoft.Maui.Controls.CarouselView.PeekAreaInsets","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VisibleViews","type":"Microsoft.Maui.Controls.CarouselView.VisibleViews"},{"name":"IsDragging","type":"Microsoft.Maui.Controls.CarouselView.IsDragging"},{"name":"IsBounceEnabled","type":"Microsoft.Maui.Controls.CarouselView.IsBounceEnabled"},{"name":"IsSwipeEnabled","type":"Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled"},{"name":"IsScrollAnimated","type":"Microsoft.Maui.Controls.CarouselView.IsScrollAnimated"},{"name":"CurrentItem","type":"Microsoft.Maui.Controls.CarouselView.CurrentItem"},{"name":"CurrentItemChangedCommand","type":"Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand"},{"name":"CurrentItemChangedCommandParameter","type":"Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter"},{"name":"Position","type":"Microsoft.Maui.Controls.CarouselView.Position"},{"name":"PositionChangedCommand","type":"Microsoft.Maui.Controls.CarouselView.PositionChangedCommand"},{"name":"PositionChangedCommandParameter","type":"Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.CarouselView.ItemsLayout"},{"name":"IndicatorView","type":"Microsoft.Maui.Controls.CarouselView.IndicatorView"},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CollectionView","type":"Microsoft.Maui.Controls.CollectionView","doc":null,"attributes":[{"name":"ReorderCompleted","type":"Microsoft.Maui.Controls.ReorderableItemsView.EventHandler","isEvent":true},{"name":"SelectionChanged","type":"Microsoft.Maui.Controls.SelectableItemsView.EventHandler\u00601","isEvent":true},{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CanMixGroups","type":"Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups"},{"name":"CanReorderItems","type":"Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems"},{"name":"IsGrouped","type":"Microsoft.Maui.Controls.GroupableItemsView.IsGrouped"},{"name":"GroupHeaderTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate"},{"name":"GroupFooterTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItem"},{"name":"SelectedItems","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItems"},{"name":"SelectionChangedCommand","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand"},{"name":"SelectionChangedCommandParameter","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter"},{"name":"SelectionMode","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SelectionMode.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SelectionMode.None"},{"name":"Single","type":"Microsoft.Maui.Controls.SelectionMode.Single"},{"name":"Multiple","type":"Microsoft.Maui.Controls.SelectionMode.Multiple"}]},{"name":"Header","type":"Microsoft.Maui.Controls.StructuredItemsView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate"},{"name":"Footer","type":"Microsoft.Maui.Controls.StructuredItemsView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout"},{"name":"ItemSizingStrategy","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemSizingStrategy.value__"},{"name":"MeasureAllItems","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems"},{"name":"MeasureFirstItem","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem"}]},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GridItemsLayout","type":"Microsoft.Maui.Controls.GridItemsLayout","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Span","type":"Microsoft.Maui.Controls.GridItemsLayout.Span"},{"name":"VerticalItemSpacing","type":"Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing"},{"name":"HorizontalItemSpacing","type":"Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing"},{"name":"Orientation","type":"Microsoft.Maui.Controls.ItemsLayout.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal"}]},{"name":"SnapPointsAlignment","type":"Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SnapPointsAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.Controls.SnapPointsAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.SnapPointsAlignment.Center"},{"name":"End","type":"Microsoft.Maui.Controls.SnapPointsAlignment.End"}]},{"name":"SnapPointsType","type":"Microsoft.Maui.Controls.ItemsLayout.SnapPointsType","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SnapPointsType.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SnapPointsType.None"},{"name":"Mandatory","type":"Microsoft.Maui.Controls.SnapPointsType.Mandatory"},{"name":"MandatorySingle","type":"Microsoft.Maui.Controls.SnapPointsType.MandatorySingle"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GroupableItemsView","type":"Microsoft.Maui.Controls.GroupableItemsView","doc":null,"attributes":[{"name":"SelectionChanged","type":"Microsoft.Maui.Controls.SelectableItemsView.EventHandler\u00601","isEvent":true},{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsGrouped","type":"Microsoft.Maui.Controls.GroupableItemsView.IsGrouped"},{"name":"GroupHeaderTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate"},{"name":"GroupFooterTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItem"},{"name":"SelectedItems","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItems"},{"name":"SelectionChangedCommand","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand"},{"name":"SelectionChangedCommandParameter","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter"},{"name":"SelectionMode","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SelectionMode.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SelectionMode.None"},{"name":"Single","type":"Microsoft.Maui.Controls.SelectionMode.Single"},{"name":"Multiple","type":"Microsoft.Maui.Controls.SelectionMode.Multiple"}]},{"name":"Header","type":"Microsoft.Maui.Controls.StructuredItemsView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate"},{"name":"Footer","type":"Microsoft.Maui.Controls.StructuredItemsView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout"},{"name":"ItemSizingStrategy","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemSizingStrategy.value__"},{"name":"MeasureAllItems","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems"},{"name":"MeasureFirstItem","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem"}]},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"LinearItemsLayout","type":"Microsoft.Maui.Controls.LinearItemsLayout","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ItemSpacing","type":"Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing"},{"name":"Orientation","type":"Microsoft.Maui.Controls.ItemsLayout.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal"}]},{"name":"SnapPointsAlignment","type":"Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SnapPointsAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.Controls.SnapPointsAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.SnapPointsAlignment.Center"},{"name":"End","type":"Microsoft.Maui.Controls.SnapPointsAlignment.End"}]},{"name":"SnapPointsType","type":"Microsoft.Maui.Controls.ItemsLayout.SnapPointsType","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SnapPointsType.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SnapPointsType.None"},{"name":"Mandatory","type":"Microsoft.Maui.Controls.SnapPointsType.Mandatory"},{"name":"MandatorySingle","type":"Microsoft.Maui.Controls.SnapPointsType.MandatorySingle"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ReorderableItemsView","type":"Microsoft.Maui.Controls.ReorderableItemsView","doc":null,"attributes":[{"name":"ReorderCompleted","type":"Microsoft.Maui.Controls.ReorderableItemsView.EventHandler","isEvent":true},{"name":"SelectionChanged","type":"Microsoft.Maui.Controls.SelectableItemsView.EventHandler\u00601","isEvent":true},{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CanMixGroups","type":"Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups"},{"name":"CanReorderItems","type":"Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems"},{"name":"IsGrouped","type":"Microsoft.Maui.Controls.GroupableItemsView.IsGrouped"},{"name":"GroupHeaderTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate"},{"name":"GroupFooterTemplate","type":"Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItem"},{"name":"SelectedItems","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItems"},{"name":"SelectionChangedCommand","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand"},{"name":"SelectionChangedCommandParameter","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter"},{"name":"SelectionMode","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SelectionMode.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SelectionMode.None"},{"name":"Single","type":"Microsoft.Maui.Controls.SelectionMode.Single"},{"name":"Multiple","type":"Microsoft.Maui.Controls.SelectionMode.Multiple"}]},{"name":"Header","type":"Microsoft.Maui.Controls.StructuredItemsView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate"},{"name":"Footer","type":"Microsoft.Maui.Controls.StructuredItemsView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout"},{"name":"ItemSizingStrategy","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemSizingStrategy.value__"},{"name":"MeasureAllItems","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems"},{"name":"MeasureFirstItem","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem"}]},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SelectableItemsView","type":"Microsoft.Maui.Controls.SelectableItemsView","doc":null,"attributes":[{"name":"SelectionChanged","type":"Microsoft.Maui.Controls.SelectableItemsView.EventHandler\u00601","isEvent":true},{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItem"},{"name":"SelectedItems","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectedItems"},{"name":"SelectionChangedCommand","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand"},{"name":"SelectionChangedCommandParameter","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter"},{"name":"SelectionMode","type":"Microsoft.Maui.Controls.SelectableItemsView.SelectionMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SelectionMode.value__"},{"name":"None","type":"Microsoft.Maui.Controls.SelectionMode.None"},{"name":"Single","type":"Microsoft.Maui.Controls.SelectionMode.Single"},{"name":"Multiple","type":"Microsoft.Maui.Controls.SelectionMode.Multiple"}]},{"name":"Header","type":"Microsoft.Maui.Controls.StructuredItemsView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate"},{"name":"Footer","type":"Microsoft.Maui.Controls.StructuredItemsView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout"},{"name":"ItemSizingStrategy","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemSizingStrategy.value__"},{"name":"MeasureAllItems","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems"},{"name":"MeasureFirstItem","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem"}]},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StructuredItemsView","type":"Microsoft.Maui.Controls.StructuredItemsView","doc":null,"attributes":[{"name":"ScrollToRequested","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ItemsView.EventHandler\u00601","isEvent":true},{"name":"RemainingItemsThresholdReached","type":"Microsoft.Maui.Controls.ItemsView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Header","type":"Microsoft.Maui.Controls.StructuredItemsView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate"},{"name":"Footer","type":"Microsoft.Maui.Controls.StructuredItemsView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate"},{"name":"ItemsLayout","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout"},{"name":"ItemSizingStrategy","type":"Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemSizingStrategy.value__"},{"name":"MeasureAllItems","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems"},{"name":"MeasureFirstItem","type":"Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem"}]},{"name":"EmptyView","type":"Microsoft.Maui.Controls.ItemsView.EmptyView"},{"name":"EmptyViewTemplate","type":"Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView.ItemsSource"},{"name":"RemainingItemsThresholdReachedCommand","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand"},{"name":"RemainingItemsThresholdReachedCommandParameter","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"RemainingItemsThreshold","type":"Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView.ItemTemplate"},{"name":"ItemsUpdatingScrollMode","type":"Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.value__"},{"name":"KeepItemsInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView"},{"name":"KeepScrollOffset","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset"},{"name":"KeepLastItemInView","type":"Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"KeyboardAccelerator","type":"Microsoft.Maui.Controls.KeyboardAccelerator","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Modifiers","type":"Microsoft.Maui.Controls.KeyboardAccelerator.Modifiers","values":[{"name":"value__","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.value__"},{"name":"None","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.None"},{"name":"Shift","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.Shift"},{"name":"Ctrl","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.Ctrl"},{"name":"Alt","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.Alt"},{"name":"Cmd","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.Cmd"},{"name":"Windows","type":"Microsoft.Maui.KeyboardAcceleratorModifiers.Windows"}]},{"name":"Key","type":"Microsoft.Maui.Controls.KeyboardAccelerator.Key"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Label","type":"Microsoft.Maui.Controls.Label","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"TextTransform","type":"Microsoft.Maui.Controls.Label.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"FormattedText","type":"Microsoft.Maui.Controls.Label.FormattedText"},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.Label.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"LineBreakMode","type":"Microsoft.Maui.Controls.Label.LineBreakMode","values":[{"name":"value__","type":"Microsoft.Maui.LineBreakMode.value__"},{"name":"NoWrap","type":"Microsoft.Maui.LineBreakMode.NoWrap"},{"name":"WordWrap","type":"Microsoft.Maui.LineBreakMode.WordWrap"},{"name":"CharacterWrap","type":"Microsoft.Maui.LineBreakMode.CharacterWrap"},{"name":"HeadTruncation","type":"Microsoft.Maui.LineBreakMode.HeadTruncation"},{"name":"TailTruncation","type":"Microsoft.Maui.LineBreakMode.TailTruncation"},{"name":"MiddleTruncation","type":"Microsoft.Maui.LineBreakMode.MiddleTruncation"}]},{"name":"Text","type":"Microsoft.Maui.Controls.Label.Text"},{"name":"TextColor","type":"Microsoft.Maui.Controls.Label.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.Label.CharacterSpacing"},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.Label.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.Label.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"TextDecorations","type":"Microsoft.Maui.Controls.Label.TextDecorations","values":[{"name":"value__","type":"Microsoft.Maui.TextDecorations.value__"},{"name":"None","type":"Microsoft.Maui.TextDecorations.None"},{"name":"Underline","type":"Microsoft.Maui.TextDecorations.Underline"},{"name":"Strikethrough","type":"Microsoft.Maui.TextDecorations.Strikethrough"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.Label.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.Label.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.Label.FontAutoScalingEnabled"},{"name":"LineHeight","type":"Microsoft.Maui.Controls.Label.LineHeight"},{"name":"MaxLines","type":"Microsoft.Maui.Controls.Label.MaxLines"},{"name":"Padding","type":"Microsoft.Maui.Controls.Label.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"TextType","type":"Microsoft.Maui.Controls.Label.TextType","values":[{"name":"value__","type":"Microsoft.Maui.TextType.value__"},{"name":"Text","type":"Microsoft.Maui.TextType.Text"},{"name":"Html","type":"Microsoft.Maui.TextType.Html"}]},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AbsoluteLayout","type":"Microsoft.Maui.Controls.AbsoluteLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"LayoutFlags","type":"Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlags","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.value__"},{"name":"None","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None"},{"name":"XProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional"},{"name":"YProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional"},{"name":"WidthProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional"},{"name":"HeightProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional"},{"name":"PositionProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional"},{"name":"SizeProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional"},{"name":"All","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All"}],"isAttached":true},{"name":"LayoutBounds","type":"Microsoft.Maui.Controls.AbsoluteLayout.LayoutBounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}],"isAttached":true}]},{"name":"FlexLayout","type":"Microsoft.Maui.Controls.FlexLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Direction","type":"Microsoft.Maui.Controls.FlexLayout.Direction","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexDirection.value__"},{"name":"Column","type":"Microsoft.Maui.Layouts.FlexDirection.Column"},{"name":"ColumnReverse","type":"Microsoft.Maui.Layouts.FlexDirection.ColumnReverse"},{"name":"Row","type":"Microsoft.Maui.Layouts.FlexDirection.Row"},{"name":"RowReverse","type":"Microsoft.Maui.Layouts.FlexDirection.RowReverse"}]},{"name":"JustifyContent","type":"Microsoft.Maui.Controls.FlexLayout.JustifyContent","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexJustify.value__"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexJustify.Start"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexJustify.Center"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexJustify.End"},{"name":"SpaceBetween","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceBetween"},{"name":"SpaceAround","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceAround"},{"name":"SpaceEvenly","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly"}]},{"name":"AlignContent","type":"Microsoft.Maui.Controls.FlexLayout.AlignContent","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignContent.value__"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignContent.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignContent.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignContent.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignContent.End"},{"name":"SpaceBetween","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween"},{"name":"SpaceAround","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround"},{"name":"SpaceEvenly","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly"}]},{"name":"AlignItems","type":"Microsoft.Maui.Controls.FlexLayout.AlignItems","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignItems.value__"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignItems.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignItems.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignItems.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignItems.End"}]},{"name":"Position","type":"Microsoft.Maui.Controls.FlexLayout.Position","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexPosition.value__"},{"name":"Relative","type":"Microsoft.Maui.Layouts.FlexPosition.Relative"},{"name":"Absolute","type":"Microsoft.Maui.Layouts.FlexPosition.Absolute"}]},{"name":"Wrap","type":"Microsoft.Maui.Controls.FlexLayout.Wrap","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexWrap.value__"},{"name":"NoWrap","type":"Microsoft.Maui.Layouts.FlexWrap.NoWrap"},{"name":"Wrap","type":"Microsoft.Maui.Layouts.FlexWrap.Wrap"},{"name":"Reverse","type":"Microsoft.Maui.Layouts.FlexWrap.Reverse"}]},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Order","type":"Microsoft.Maui.Controls.FlexLayout.Order","isAttached":true},{"name":"Grow","type":"Microsoft.Maui.Controls.FlexLayout.Grow","isAttached":true},{"name":"Shrink","type":"Microsoft.Maui.Controls.FlexLayout.Shrink","isAttached":true},{"name":"AlignSelf","type":"Microsoft.Maui.Controls.FlexLayout.AlignSelf","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignSelf.value__"},{"name":"Auto","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Auto"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignSelf.End"}],"isAttached":true},{"name":"Basis","type":"Microsoft.Maui.Controls.FlexLayout.Basis","values":[{"name":"Auto","type":"Microsoft.Maui.Layouts.FlexBasis.Auto"}],"isAttached":true}]},{"name":"Grid","type":"Microsoft.Maui.Controls.Grid","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ColumnDefinitions","type":"Microsoft.Maui.Controls.Grid.ColumnDefinitions"},{"name":"RowDefinitions","type":"Microsoft.Maui.Controls.Grid.RowDefinitions"},{"name":"RowSpacing","type":"Microsoft.Maui.Controls.Grid.RowSpacing"},{"name":"ColumnSpacing","type":"Microsoft.Maui.Controls.Grid.ColumnSpacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Column","type":"Microsoft.Maui.Controls.Grid.Column","isAttached":true},{"name":"ColumnSpan","type":"Microsoft.Maui.Controls.Grid.ColumnSpan","isAttached":true},{"name":"Row","type":"Microsoft.Maui.Controls.Grid.Row","isAttached":true},{"name":"RowSpan","type":"Microsoft.Maui.Controls.Grid.RowSpan","isAttached":true}]},{"name":"HorizontalStackLayout","type":"Microsoft.Maui.Controls.HorizontalStackLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Spacing","type":"Microsoft.Maui.Controls.StackBase.Spacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StackLayout","type":"Microsoft.Maui.Controls.StackLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Orientation","type":"Microsoft.Maui.Controls.StackLayout.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Controls.StackOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.Controls.StackOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.Controls.StackOrientation.Horizontal"}]},{"name":"Spacing","type":"Microsoft.Maui.Controls.StackBase.Spacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"VerticalStackLayout","type":"Microsoft.Maui.Controls.VerticalStackLayout","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Spacing","type":"Microsoft.Maui.Controls.StackBase.Spacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"LinearGradientBrush","type":"Microsoft.Maui.Controls.LinearGradientBrush","doc":null,"attributes":[{"name":"InvalidateGradientBrushRequested","type":"Microsoft.Maui.Controls.GradientBrush.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty"},{"name":"StartPoint","type":"Microsoft.Maui.Controls.LinearGradientBrush.StartPoint","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"EndPoint","type":"Microsoft.Maui.Controls.LinearGradientBrush.EndPoint","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"GradientStops","type":"Microsoft.Maui.Controls.GradientBrush.GradientStops"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ListView","type":"Microsoft.Maui.Controls.ListView","doc":null,"attributes":[{"name":"ItemAppearing","type":"Microsoft.Maui.Controls.ListView.EventHandler\u00601","isEvent":true},{"name":"ItemDisappearing","type":"Microsoft.Maui.Controls.ListView.EventHandler\u00601","isEvent":true},{"name":"ItemSelected","type":"Microsoft.Maui.Controls.ListView.EventHandler\u00601","isEvent":true},{"name":"ItemTapped","type":"Microsoft.Maui.Controls.ListView.EventHandler\u00601","isEvent":true},{"name":"Scrolled","type":"Microsoft.Maui.Controls.ListView.EventHandler\u00601","isEvent":true},{"name":"Refreshing","type":"Microsoft.Maui.Controls.ListView.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Footer","type":"Microsoft.Maui.Controls.ListView.Footer"},{"name":"FooterTemplate","type":"Microsoft.Maui.Controls.ListView.FooterTemplate"},{"name":"GroupDisplayBinding","type":"Microsoft.Maui.Controls.ListView.GroupDisplayBinding"},{"name":"GroupHeaderTemplate","type":"Microsoft.Maui.Controls.ListView.GroupHeaderTemplate"},{"name":"GroupShortNameBinding","type":"Microsoft.Maui.Controls.ListView.GroupShortNameBinding"},{"name":"HasUnevenRows","type":"Microsoft.Maui.Controls.ListView.HasUnevenRows"},{"name":"Header","type":"Microsoft.Maui.Controls.ListView.Header"},{"name":"HeaderTemplate","type":"Microsoft.Maui.Controls.ListView.HeaderTemplate"},{"name":"IsGroupingEnabled","type":"Microsoft.Maui.Controls.ListView.IsGroupingEnabled"},{"name":"IsPullToRefreshEnabled","type":"Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled"},{"name":"IsRefreshing","type":"Microsoft.Maui.Controls.ListView.IsRefreshing"},{"name":"RefreshCommand","type":"Microsoft.Maui.Controls.ListView.RefreshCommand"},{"name":"RowHeight","type":"Microsoft.Maui.Controls.ListView.RowHeight"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.ListView.SelectedItem"},{"name":"SelectionMode","type":"Microsoft.Maui.Controls.ListView.SelectionMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ListViewSelectionMode.value__"},{"name":"None","type":"Microsoft.Maui.Controls.ListViewSelectionMode.None"},{"name":"Single","type":"Microsoft.Maui.Controls.ListViewSelectionMode.Single"}]},{"name":"SeparatorColor","type":"Microsoft.Maui.Controls.ListView.SeparatorColor"},{"name":"RefreshControlColor","type":"Microsoft.Maui.Controls.ListView.RefreshControlColor"},{"name":"SeparatorVisibility","type":"Microsoft.Maui.Controls.ListView.SeparatorVisibility","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SeparatorVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.Controls.SeparatorVisibility.Default"},{"name":"None","type":"Microsoft.Maui.Controls.SeparatorVisibility.None"}]},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"CachingStrategy","type":"Microsoft.Maui.Controls.ListView.CachingStrategy","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ListViewCachingStrategy.value__"},{"name":"RetainElement","type":"Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement"},{"name":"RecycleElement","type":"Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement"},{"name":"RecycleElementAndDataTemplate","type":"Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate"}]},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.ItemsView\u00601.ItemsSource"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.ItemsView\u00601.ItemTemplate"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MenuBar","type":"Microsoft.Maui.Controls.MenuBar","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuBar.IsEnabled"},{"name":"Item","type":"Microsoft.Maui.Controls.MenuBar.Item"},{"name":"Count","type":"Microsoft.Maui.Controls.MenuBar.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.MenuBar.IsReadOnly"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MenuBarItem","type":"Microsoft.Maui.Controls.MenuBarItem","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Priority","type":"Microsoft.Maui.Controls.MenuBarItem.Priority"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuBarItem.IsEnabled"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuBarItem.Text"},{"name":"Item","type":"Microsoft.Maui.Controls.MenuBarItem.Item"},{"name":"Count","type":"Microsoft.Maui.Controls.MenuBarItem.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.MenuBarItem.IsReadOnly"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MenuFlyout","type":"Microsoft.Maui.Controls.MenuFlyout","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Item","type":"Microsoft.Maui.Controls.MenuFlyout.Item"},{"name":"Count","type":"Microsoft.Maui.Controls.MenuFlyout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.MenuFlyout.IsReadOnly"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"ContextFlyout","type":"Microsoft.Maui.Controls.FlyoutBase.ContextFlyout","isAttached":true}]},{"name":"MenuFlyoutItem","type":"Microsoft.Maui.Controls.MenuFlyoutItem","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"KeyboardAccelerators","type":"Microsoft.Maui.Controls.MenuFlyoutItem.KeyboardAccelerators"},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"MenuFlyoutSeparator","type":"Microsoft.Maui.Controls.MenuFlyoutSeparator","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"KeyboardAccelerators","type":"Microsoft.Maui.Controls.MenuFlyoutItem.KeyboardAccelerators"},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"MenuFlyoutSubItem","type":"Microsoft.Maui.Controls.MenuFlyoutSubItem","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Item","type":"Microsoft.Maui.Controls.MenuFlyoutSubItem.Item"},{"name":"Count","type":"Microsoft.Maui.Controls.MenuFlyoutSubItem.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly"},{"name":"KeyboardAccelerators","type":"Microsoft.Maui.Controls.MenuFlyoutItem.KeyboardAccelerators"},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"MenuItem","type":"Microsoft.Maui.Controls.MenuItem","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"NavigationPage","type":"Microsoft.Maui.Controls.NavigationPage","doc":null,"attributes":[{"name":"Popped","type":"Microsoft.Maui.Controls.NavigationPage.EventHandler\u00601","isEvent":true},{"name":"PoppedToRoot","type":"Microsoft.Maui.Controls.NavigationPage.EventHandler\u00601","isEvent":true},{"name":"Pushed","type":"Microsoft.Maui.Controls.NavigationPage.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BarBackgroundColor","type":"Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor"},{"name":"BarBackground","type":"Microsoft.Maui.Controls.NavigationPage.BarBackground"},{"name":"BarTextColor","type":"Microsoft.Maui.Controls.NavigationPage.BarTextColor"},{"name":"CurrentPage","type":"Microsoft.Maui.Controls.NavigationPage.CurrentPage"},{"name":"RootPage","type":"Microsoft.Maui.Controls.NavigationPage.RootPage"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"BackButtonTitle","type":"Microsoft.Maui.Controls.NavigationPage.BackButtonTitle","isAttached":true},{"name":"HasBackButton","type":"Microsoft.Maui.Controls.NavigationPage.HasBackButton","isAttached":true},{"name":"HasNavigationBar","type":"Microsoft.Maui.Controls.NavigationPage.HasNavigationBar","isAttached":true},{"name":"TitleIconImageSource","type":"Microsoft.Maui.Controls.NavigationPage.TitleIconImageSource","isAttached":true},{"name":"TitleView","type":"Microsoft.Maui.Controls.NavigationPage.TitleView","isAttached":true},{"name":"IconColor","type":"Microsoft.Maui.Controls.NavigationPage.IconColor","isAttached":true}]},{"name":"OrientationStateTrigger","type":"Microsoft.Maui.Controls.OrientationStateTrigger","doc":null,"attributes":[{"name":"IsActiveChanged","type":"Microsoft.Maui.Controls.StateTriggerBase.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Orientation","type":"Microsoft.Maui.Controls.OrientationStateTrigger.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Devices.DisplayOrientation.value__"},{"name":"Unknown","type":"Microsoft.Maui.Devices.DisplayOrientation.Unknown"},{"name":"Portrait","type":"Microsoft.Maui.Devices.DisplayOrientation.Portrait"},{"name":"Landscape","type":"Microsoft.Maui.Devices.DisplayOrientation.Landscape"}]},{"name":"IsActive","type":"Microsoft.Maui.Controls.StateTriggerBase.IsActive"},{"name":"IsAttached","type":"Microsoft.Maui.Controls.StateTriggerBase.IsAttached"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Page","type":"Microsoft.Maui.Controls.Page","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PanGestureRecognizer","type":"Microsoft.Maui.Controls.PanGestureRecognizer","doc":null,"attributes":[{"name":"PanUpdated","type":"Microsoft.Maui.Controls.PanGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"TouchPoints","type":"Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Picker","type":"Microsoft.Maui.Controls.Picker","doc":null,"attributes":[{"name":"SelectedIndexChanged","type":"Microsoft.Maui.Controls.Picker.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.Picker.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.Picker.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.Picker.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled"},{"name":"Items","type":"Microsoft.Maui.Controls.Picker.Items"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.Picker.ItemsSource"},{"name":"SelectedIndex","type":"Microsoft.Maui.Controls.Picker.SelectedIndex"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.Picker.SelectedItem"},{"name":"TextColor","type":"Microsoft.Maui.Controls.Picker.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.Picker.CharacterSpacing"},{"name":"Title","type":"Microsoft.Maui.Controls.Picker.Title"},{"name":"TitleColor","type":"Microsoft.Maui.Controls.Picker.TitleColor"},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.Picker.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.Picker.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"ItemDisplayBinding","type":"Microsoft.Maui.Controls.Picker.ItemDisplayBinding"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PinchGestureRecognizer","type":"Microsoft.Maui.Controls.PinchGestureRecognizer","doc":null,"attributes":[{"name":"PinchUpdated","type":"Microsoft.Maui.Controls.PinchGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PointerGestureRecognizer","type":"Microsoft.Maui.Controls.PointerGestureRecognizer","doc":null,"attributes":[{"name":"PointerEntered","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"PointerExited","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"PointerMoved","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"PointerPressed","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"PointerReleased","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"PointerEnteredCommand","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerEnteredCommand"},{"name":"PointerEnteredCommandParameter","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerEnteredCommandParameter"},{"name":"PointerExitedCommand","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerExitedCommand"},{"name":"PointerExitedCommandParameter","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerExitedCommandParameter"},{"name":"PointerMovedCommand","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerMovedCommand"},{"name":"PointerMovedCommandParameter","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerMovedCommandParameter"},{"name":"PointerPressedCommand","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerPressedCommand"},{"name":"PointerPressedCommandParameter","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerPressedCommandParameter"},{"name":"PointerReleasedCommand","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerReleasedCommand"},{"name":"PointerReleasedCommandParameter","type":"Microsoft.Maui.Controls.PointerGestureRecognizer.PointerReleasedCommandParameter"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ProgressBar","type":"Microsoft.Maui.Controls.ProgressBar","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ProgressColor","type":"Microsoft.Maui.Controls.ProgressBar.ProgressColor"},{"name":"Progress","type":"Microsoft.Maui.Controls.ProgressBar.Progress"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RadialGradientBrush","type":"Microsoft.Maui.Controls.RadialGradientBrush","doc":null,"attributes":[{"name":"InvalidateGradientBrushRequested","type":"Microsoft.Maui.Controls.GradientBrush.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty"},{"name":"Center","type":"Microsoft.Maui.Controls.RadialGradientBrush.Center","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Radius","type":"Microsoft.Maui.Controls.RadialGradientBrush.Radius"},{"name":"GradientStops","type":"Microsoft.Maui.Controls.GradientBrush.GradientStops"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RadioButton","type":"Microsoft.Maui.Controls.RadioButton","doc":null,"attributes":[{"name":"CheckedChanged","type":"Microsoft.Maui.Controls.RadioButton.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.RadioButton.Content"},{"name":"Value","type":"Microsoft.Maui.Controls.RadioButton.Value"},{"name":"IsChecked","type":"Microsoft.Maui.Controls.RadioButton.IsChecked"},{"name":"GroupName","type":"Microsoft.Maui.Controls.RadioButton.GroupName"},{"name":"TextColor","type":"Microsoft.Maui.Controls.RadioButton.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.RadioButton.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.RadioButton.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.RadioButton.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.RadioButton.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.RadioButton.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled"},{"name":"BorderWidth","type":"Microsoft.Maui.Controls.RadioButton.BorderWidth"},{"name":"BorderColor","type":"Microsoft.Maui.Controls.RadioButton.BorderColor"},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.RadioButton.CornerRadius"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RefreshView","type":"Microsoft.Maui.Controls.RefreshView","doc":null,"attributes":[{"name":"Refreshing","type":"Microsoft.Maui.Controls.RefreshView.EventHandler","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsRefreshing","type":"Microsoft.Maui.Controls.RefreshView.IsRefreshing"},{"name":"Command","type":"Microsoft.Maui.Controls.RefreshView.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.RefreshView.CommandParameter"},{"name":"RefreshColor","type":"Microsoft.Maui.Controls.RefreshView.RefreshColor"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RowDefinition","type":"Microsoft.Maui.Controls.RowDefinition","doc":null,"attributes":[{"name":"SizeChanged","type":"Microsoft.Maui.Controls.RowDefinition.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Height","type":"Microsoft.Maui.Controls.RowDefinition.Height","values":[{"name":"Auto","type":"Microsoft.Maui.GridLength.Auto"},{"name":"Star","type":"Microsoft.Maui.GridLength.Star"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ScrollView","type":"Microsoft.Maui.Controls.ScrollView","doc":null,"attributes":[{"name":"Scrolled","type":"Microsoft.Maui.Controls.ScrollView.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Content","type":"Microsoft.Maui.Controls.ScrollView.Content"},{"name":"ContentSize","type":"Microsoft.Maui.Controls.ScrollView.ContentSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"Orientation","type":"Microsoft.Maui.Controls.ScrollView.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.ScrollOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.ScrollOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.ScrollOrientation.Horizontal"},{"name":"Both","type":"Microsoft.Maui.ScrollOrientation.Both"},{"name":"Neither","type":"Microsoft.Maui.ScrollOrientation.Neither"}]},{"name":"ScrollX","type":"Microsoft.Maui.Controls.ScrollView.ScrollX"},{"name":"ScrollY","type":"Microsoft.Maui.Controls.ScrollView.ScrollY"},{"name":"HorizontalScrollBarVisibility","type":"Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"VerticalScrollBarVisibility","type":"Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility","values":[{"name":"value__","type":"Microsoft.Maui.ScrollBarVisibility.value__"},{"name":"Default","type":"Microsoft.Maui.ScrollBarVisibility.Default"},{"name":"Always","type":"Microsoft.Maui.ScrollBarVisibility.Always"},{"name":"Never","type":"Microsoft.Maui.ScrollBarVisibility.Never"}]},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SearchBar","type":"Microsoft.Maui.Controls.SearchBar","doc":null,"attributes":[{"name":"SearchButtonPressed","type":"Microsoft.Maui.Controls.SearchBar.EventHandler","isEvent":true},{"name":"TextChanged","type":"Microsoft.Maui.Controls.InputView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CancelButtonColor","type":"Microsoft.Maui.Controls.SearchBar.CancelButtonColor"},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"SearchCommand","type":"Microsoft.Maui.Controls.SearchBar.SearchCommand"},{"name":"SearchCommandParameter","type":"Microsoft.Maui.Controls.SearchBar.SearchCommandParameter"},{"name":"MaxLength","type":"Microsoft.Maui.Controls.InputView.MaxLength"},{"name":"Text","type":"Microsoft.Maui.Controls.InputView.Text"},{"name":"Keyboard","type":"Microsoft.Maui.Controls.InputView.Keyboard"},{"name":"IsSpellCheckEnabled","type":"Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled"},{"name":"IsTextPredictionEnabled","type":"Microsoft.Maui.Controls.InputView.IsTextPredictionEnabled"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.InputView.IsReadOnly"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.InputView.Placeholder"},{"name":"PlaceholderColor","type":"Microsoft.Maui.Controls.InputView.PlaceholderColor"},{"name":"TextColor","type":"Microsoft.Maui.Controls.InputView.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.InputView.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.InputView.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"CursorPosition","type":"Microsoft.Maui.Controls.InputView.CursorPosition"},{"name":"SelectionLength","type":"Microsoft.Maui.Controls.InputView.SelectionLength"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.InputView.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.InputView.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.InputView.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.InputView.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Shadow","type":"Microsoft.Maui.Controls.Shadow","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Radius","type":"Microsoft.Maui.Controls.Shadow.Radius"},{"name":"Opacity","type":"Microsoft.Maui.Controls.Shadow.Opacity"},{"name":"Brush","type":"Microsoft.Maui.Controls.Shadow.Brush"},{"name":"Offset","type":"Microsoft.Maui.Controls.Shadow.Offset","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BackButtonBehavior","type":"Microsoft.Maui.Controls.BackButtonBehavior","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.BackButtonBehavior.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter"},{"name":"IconOverride","type":"Microsoft.Maui.Controls.BackButtonBehavior.IconOverride"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.BackButtonBehavior.IsVisible"},{"name":"TextOverride","type":"Microsoft.Maui.Controls.BackButtonBehavior.TextOverride"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BaseShellItem","type":"Microsoft.Maui.Controls.BaseShellItem","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"FlyoutIcon","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon"},{"name":"Icon","type":"Microsoft.Maui.Controls.BaseShellItem.Icon"},{"name":"IsChecked","type":"Microsoft.Maui.Controls.BaseShellItem.IsChecked"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.BaseShellItem.IsEnabled"},{"name":"Route","type":"Microsoft.Maui.Controls.BaseShellItem.Route"},{"name":"Title","type":"Microsoft.Maui.Controls.BaseShellItem.Title"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.IsVisible"},{"name":"FlyoutItemIsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible"},{"name":"Window","type":"Microsoft.Maui.Controls.BaseShellItem.Window"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"NavigableElement","type":"Microsoft.Maui.Controls.NavigableElement","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SearchHandler","type":"Microsoft.Maui.Controls.SearchHandler","doc":null,"attributes":[{"name":"Focused","type":"Microsoft.Maui.Controls.SearchHandler.EventHandler\u00601","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.SearchHandler.EventHandler\u00601","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsFocused","type":"Microsoft.Maui.Controls.SearchHandler.IsFocused"},{"name":"Keyboard","type":"Microsoft.Maui.Controls.SearchHandler.Keyboard"},{"name":"HorizontalTextAlignment","type":"Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"VerticalTextAlignment","type":"Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment","values":[{"name":"value__","type":"Microsoft.Maui.TextAlignment.value__"},{"name":"Start","type":"Microsoft.Maui.TextAlignment.Start"},{"name":"Center","type":"Microsoft.Maui.TextAlignment.Center"},{"name":"End","type":"Microsoft.Maui.TextAlignment.End"}]},{"name":"TextColor","type":"Microsoft.Maui.Controls.SearchHandler.TextColor"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.SearchHandler.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"CancelButtonColor","type":"Microsoft.Maui.Controls.SearchHandler.CancelButtonColor"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.SearchHandler.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.SearchHandler.FontFamily"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.SearchHandler.CharacterSpacing"},{"name":"FontSize","type":"Microsoft.Maui.Controls.SearchHandler.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled"},{"name":"PlaceholderColor","type":"Microsoft.Maui.Controls.SearchHandler.PlaceholderColor"},{"name":"Placeholder","type":"Microsoft.Maui.Controls.SearchHandler.Placeholder"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.SearchHandler.BackgroundColor"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.SearchHandler.AutomationId"},{"name":"ClearIcon","type":"Microsoft.Maui.Controls.SearchHandler.ClearIcon"},{"name":"ClearIconHelpText","type":"Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText"},{"name":"ClearIconName","type":"Microsoft.Maui.Controls.SearchHandler.ClearIconName"},{"name":"ClearPlaceholderCommand","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand"},{"name":"ClearPlaceholderCommandParameter","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter"},{"name":"ClearPlaceholderEnabled","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled"},{"name":"ClearPlaceholderHelpText","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText"},{"name":"ClearPlaceholderIcon","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon"},{"name":"ClearPlaceholderName","type":"Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName"},{"name":"Command","type":"Microsoft.Maui.Controls.SearchHandler.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.SearchHandler.CommandParameter"},{"name":"DisplayMemberName","type":"Microsoft.Maui.Controls.SearchHandler.DisplayMemberName"},{"name":"IsSearchEnabled","type":"Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.SearchHandler.ItemsSource"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.SearchHandler.ItemTemplate"},{"name":"Query","type":"Microsoft.Maui.Controls.SearchHandler.Query"},{"name":"QueryIcon","type":"Microsoft.Maui.Controls.SearchHandler.QueryIcon"},{"name":"QueryIconHelpText","type":"Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText"},{"name":"QueryIconName","type":"Microsoft.Maui.Controls.SearchHandler.QueryIconName"},{"name":"SearchBoxVisibility","type":"Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SearchBoxVisibility.value__"},{"name":"Hidden","type":"Microsoft.Maui.Controls.SearchBoxVisibility.Hidden"},{"name":"Collapsible","type":"Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible"},{"name":"Expanded","type":"Microsoft.Maui.Controls.SearchBoxVisibility.Expanded"}]},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.SearchHandler.SelectedItem"},{"name":"ShowsResults","type":"Microsoft.Maui.Controls.SearchHandler.ShowsResults"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Shell","type":"Microsoft.Maui.Controls.Shell","doc":null,"attributes":[{"name":"Navigated","type":"Microsoft.Maui.Controls.Shell.EventHandler\u00601","isEvent":true},{"name":"Navigating","type":"Microsoft.Maui.Controls.Shell.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CurrentPage","type":"Microsoft.Maui.Controls.Shell.CurrentPage"},{"name":"FlyoutVerticalScrollMode","type":"Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ScrollMode.value__"},{"name":"Disabled","type":"Microsoft.Maui.Controls.ScrollMode.Disabled"},{"name":"Enabled","type":"Microsoft.Maui.Controls.ScrollMode.Enabled"},{"name":"Auto","type":"Microsoft.Maui.Controls.ScrollMode.Auto"}]},{"name":"FlyoutIcon","type":"Microsoft.Maui.Controls.Shell.FlyoutIcon"},{"name":"CurrentItem","type":"Microsoft.Maui.Controls.Shell.CurrentItem"},{"name":"CurrentState","type":"Microsoft.Maui.Controls.Shell.CurrentState"},{"name":"FlyoutBackgroundImage","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage"},{"name":"FlyoutBackgroundImageAspect","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect","values":[{"name":"value__","type":"Microsoft.Maui.Aspect.value__"},{"name":"AspectFit","type":"Microsoft.Maui.Aspect.AspectFit"},{"name":"AspectFill","type":"Microsoft.Maui.Aspect.AspectFill"},{"name":"Fill","type":"Microsoft.Maui.Aspect.Fill"},{"name":"Center","type":"Microsoft.Maui.Aspect.Center"}]},{"name":"FlyoutBackgroundColor","type":"Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor"},{"name":"FlyoutBackground","type":"Microsoft.Maui.Controls.Shell.FlyoutBackground"},{"name":"FlyoutBackdrop","type":"Microsoft.Maui.Controls.Shell.FlyoutBackdrop"},{"name":"FlyoutWidth","type":"Microsoft.Maui.Controls.Shell.FlyoutWidth"},{"name":"FlyoutHeight","type":"Microsoft.Maui.Controls.Shell.FlyoutHeight"},{"name":"FlyoutBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutBehavior","values":[{"name":"value__","type":"Microsoft.Maui.FlyoutBehavior.value__"},{"name":"Disabled","type":"Microsoft.Maui.FlyoutBehavior.Disabled"},{"name":"Flyout","type":"Microsoft.Maui.FlyoutBehavior.Flyout"},{"name":"Locked","type":"Microsoft.Maui.FlyoutBehavior.Locked"}]},{"name":"FlyoutHeader","type":"Microsoft.Maui.Controls.Shell.FlyoutHeader"},{"name":"FlyoutFooter","type":"Microsoft.Maui.Controls.Shell.FlyoutFooter"},{"name":"FlyoutHeaderBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.value__"},{"name":"Default","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default"},{"name":"Fixed","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed"},{"name":"Scroll","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll"},{"name":"CollapseOnScroll","type":"Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll"}]},{"name":"FlyoutHeaderTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate"},{"name":"FlyoutFooterTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate"},{"name":"FlyoutIsPresented","type":"Microsoft.Maui.Controls.Shell.FlyoutIsPresented"},{"name":"Items","type":"Microsoft.Maui.Controls.Shell.Items"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.Shell.ItemTemplate"},{"name":"MenuItemTemplate","type":"Microsoft.Maui.Controls.Shell.MenuItemTemplate"},{"name":"FlyoutItems","type":"Microsoft.Maui.Controls.Shell.FlyoutItems"},{"name":"FlyoutContent","type":"Microsoft.Maui.Controls.Shell.FlyoutContent"},{"name":"FlyoutContentTemplate","type":"Microsoft.Maui.Controls.Shell.FlyoutContentTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"FlyoutItemIsVisible","type":"Microsoft.Maui.Controls.Shell.FlyoutItemIsVisible","isAttached":true},{"name":"MenuItemTemplate","type":"Microsoft.Maui.Controls.Shell.MenuItemTemplate","isAttached":true},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.Shell.ItemTemplate","isAttached":true},{"name":"BackButtonBehavior","type":"Microsoft.Maui.Controls.Shell.BackButtonBehavior","isAttached":true},{"name":"PresentationMode","type":"Microsoft.Maui.Controls.Shell.PresentationMode","values":[{"name":"value__","type":"Microsoft.Maui.Controls.PresentationMode.value__"},{"name":"NotAnimated","type":"Microsoft.Maui.Controls.PresentationMode.NotAnimated"},{"name":"Animated","type":"Microsoft.Maui.Controls.PresentationMode.Animated"},{"name":"Modal","type":"Microsoft.Maui.Controls.PresentationMode.Modal"},{"name":"ModalAnimated","type":"Microsoft.Maui.Controls.PresentationMode.ModalAnimated"},{"name":"ModalNotAnimated","type":"Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated"}],"isAttached":true},{"name":"FlyoutBehavior","type":"Microsoft.Maui.Controls.Shell.FlyoutBehavior","values":[{"name":"value__","type":"Microsoft.Maui.FlyoutBehavior.value__"},{"name":"Disabled","type":"Microsoft.Maui.FlyoutBehavior.Disabled"},{"name":"Flyout","type":"Microsoft.Maui.FlyoutBehavior.Flyout"},{"name":"Locked","type":"Microsoft.Maui.FlyoutBehavior.Locked"}],"isAttached":true},{"name":"FlyoutWidth","type":"Microsoft.Maui.Controls.Shell.FlyoutWidth","isAttached":true},{"name":"FlyoutHeight","type":"Microsoft.Maui.Controls.Shell.FlyoutHeight","isAttached":true},{"name":"NavBarIsVisible","type":"Microsoft.Maui.Controls.Shell.NavBarIsVisible","isAttached":true},{"name":"NavBarHasShadow","type":"Microsoft.Maui.Controls.Shell.NavBarHasShadow","isAttached":true},{"name":"SearchHandler","type":"Microsoft.Maui.Controls.Shell.SearchHandler","isAttached":true},{"name":"TabBarIsVisible","type":"Microsoft.Maui.Controls.Shell.TabBarIsVisible","isAttached":true},{"name":"TitleView","type":"Microsoft.Maui.Controls.Shell.TitleView","isAttached":true},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.Shell.BackgroundColor","isAttached":true},{"name":"DisabledColor","type":"Microsoft.Maui.Controls.Shell.DisabledColor","isAttached":true},{"name":"ForegroundColor","type":"Microsoft.Maui.Controls.Shell.ForegroundColor","isAttached":true},{"name":"TabBarBackgroundColor","type":"Microsoft.Maui.Controls.Shell.TabBarBackgroundColor","isAttached":true},{"name":"TabBarDisabledColor","type":"Microsoft.Maui.Controls.Shell.TabBarDisabledColor","isAttached":true},{"name":"TabBarForegroundColor","type":"Microsoft.Maui.Controls.Shell.TabBarForegroundColor","isAttached":true},{"name":"TabBarTitleColor","type":"Microsoft.Maui.Controls.Shell.TabBarTitleColor","isAttached":true},{"name":"TabBarUnselectedColor","type":"Microsoft.Maui.Controls.Shell.TabBarUnselectedColor","isAttached":true},{"name":"TitleColor","type":"Microsoft.Maui.Controls.Shell.TitleColor","isAttached":true},{"name":"UnselectedColor","type":"Microsoft.Maui.Controls.Shell.UnselectedColor","isAttached":true},{"name":"FlyoutBackdrop","type":"Microsoft.Maui.Controls.Shell.FlyoutBackdrop","isAttached":true}]},{"name":"ShellContent","type":"Microsoft.Maui.Controls.ShellContent","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MenuItems","type":"Microsoft.Maui.Controls.ShellContent.MenuItems"},{"name":"Content","type":"Microsoft.Maui.Controls.ShellContent.Content"},{"name":"ContentTemplate","type":"Microsoft.Maui.Controls.ShellContent.ContentTemplate"},{"name":"FlyoutIcon","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon"},{"name":"Icon","type":"Microsoft.Maui.Controls.BaseShellItem.Icon"},{"name":"IsChecked","type":"Microsoft.Maui.Controls.BaseShellItem.IsChecked"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.BaseShellItem.IsEnabled"},{"name":"Route","type":"Microsoft.Maui.Controls.BaseShellItem.Route"},{"name":"Title","type":"Microsoft.Maui.Controls.BaseShellItem.Title"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.IsVisible"},{"name":"FlyoutItemIsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible"},{"name":"Window","type":"Microsoft.Maui.Controls.BaseShellItem.Window"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ShellGroupItem","type":"Microsoft.Maui.Controls.ShellGroupItem","doc":null,"attributes":[{"name":"Appearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.BaseShellItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"FlyoutDisplayOptions","type":"Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FlyoutDisplayOptions.value__"},{"name":"AsSingleItem","type":"Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem"},{"name":"AsMultipleItems","type":"Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems"}]},{"name":"FlyoutIcon","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon"},{"name":"Icon","type":"Microsoft.Maui.Controls.BaseShellItem.Icon"},{"name":"IsChecked","type":"Microsoft.Maui.Controls.BaseShellItem.IsChecked"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.BaseShellItem.IsEnabled"},{"name":"Route","type":"Microsoft.Maui.Controls.BaseShellItem.Route"},{"name":"Title","type":"Microsoft.Maui.Controls.BaseShellItem.Title"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.IsVisible"},{"name":"FlyoutItemIsVisible","type":"Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible"},{"name":"Window","type":"Microsoft.Maui.Controls.BaseShellItem.Window"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Slider","type":"Microsoft.Maui.Controls.Slider","doc":null,"attributes":[{"name":"ValueChanged","type":"Microsoft.Maui.Controls.Slider.EventHandler\u00601","isEvent":true},{"name":"DragStarted","type":"Microsoft.Maui.Controls.Slider.EventHandler","isEvent":true},{"name":"DragCompleted","type":"Microsoft.Maui.Controls.Slider.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"MinimumTrackColor","type":"Microsoft.Maui.Controls.Slider.MinimumTrackColor"},{"name":"MaximumTrackColor","type":"Microsoft.Maui.Controls.Slider.MaximumTrackColor"},{"name":"ThumbColor","type":"Microsoft.Maui.Controls.Slider.ThumbColor"},{"name":"ThumbImageSource","type":"Microsoft.Maui.Controls.Slider.ThumbImageSource"},{"name":"DragStartedCommand","type":"Microsoft.Maui.Controls.Slider.DragStartedCommand"},{"name":"DragCompletedCommand","type":"Microsoft.Maui.Controls.Slider.DragCompletedCommand"},{"name":"Maximum","type":"Microsoft.Maui.Controls.Slider.Maximum"},{"name":"Minimum","type":"Microsoft.Maui.Controls.Slider.Minimum"},{"name":"Value","type":"Microsoft.Maui.Controls.Slider.Value"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SolidColorBrush","type":"Microsoft.Maui.Controls.SolidColorBrush","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsEmpty","type":"Microsoft.Maui.Controls.SolidColorBrush.IsEmpty"},{"name":"Color","type":"Microsoft.Maui.Controls.SolidColorBrush.Color"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Span","type":"Microsoft.Maui.Controls.Span","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Style","type":"Microsoft.Maui.Controls.Span.Style"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.Span.BackgroundColor"},{"name":"TextColor","type":"Microsoft.Maui.Controls.Span.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.Span.CharacterSpacing"},{"name":"TextTransform","type":"Microsoft.Maui.Controls.Span.TextTransform","values":[{"name":"value__","type":"Microsoft.Maui.TextTransform.value__"},{"name":"None","type":"Microsoft.Maui.TextTransform.None"},{"name":"Default","type":"Microsoft.Maui.TextTransform.Default"},{"name":"Lowercase","type":"Microsoft.Maui.TextTransform.Lowercase"},{"name":"Uppercase","type":"Microsoft.Maui.TextTransform.Uppercase"}]},{"name":"Text","type":"Microsoft.Maui.Controls.Span.Text"},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.Span.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.Span.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.Span.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.Span.FontAutoScalingEnabled"},{"name":"TextDecorations","type":"Microsoft.Maui.Controls.Span.TextDecorations","values":[{"name":"value__","type":"Microsoft.Maui.TextDecorations.value__"},{"name":"None","type":"Microsoft.Maui.TextDecorations.None"},{"name":"Underline","type":"Microsoft.Maui.TextDecorations.Underline"},{"name":"Strikethrough","type":"Microsoft.Maui.TextDecorations.Strikethrough"}]},{"name":"LineHeight","type":"Microsoft.Maui.Controls.Span.LineHeight"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.GestureElement.GestureRecognizers"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"StateTrigger","type":"Microsoft.Maui.Controls.StateTrigger","doc":null,"attributes":[{"name":"IsActiveChanged","type":"Microsoft.Maui.Controls.StateTriggerBase.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"IsActive","type":"Microsoft.Maui.Controls.StateTrigger.IsActive"},{"name":"IsAttached","type":"Microsoft.Maui.Controls.StateTriggerBase.IsAttached"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Stepper","type":"Microsoft.Maui.Controls.Stepper","doc":null,"attributes":[{"name":"ValueChanged","type":"Microsoft.Maui.Controls.Stepper.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Increment","type":"Microsoft.Maui.Controls.Stepper.Increment"},{"name":"Maximum","type":"Microsoft.Maui.Controls.Stepper.Maximum"},{"name":"Minimum","type":"Microsoft.Maui.Controls.Stepper.Minimum"},{"name":"Value","type":"Microsoft.Maui.Controls.Stepper.Value"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SwipeGestureRecognizer","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer","doc":null,"attributes":[{"name":"Swiped","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter"},{"name":"Direction","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction","values":[{"name":"value__","type":"Microsoft.Maui.SwipeDirection.value__"},{"name":"Right","type":"Microsoft.Maui.SwipeDirection.Right"},{"name":"Left","type":"Microsoft.Maui.SwipeDirection.Left"},{"name":"Up","type":"Microsoft.Maui.SwipeDirection.Up"},{"name":"Down","type":"Microsoft.Maui.SwipeDirection.Down"}]},{"name":"Threshold","type":"Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SwipeItem","type":"Microsoft.Maui.Controls.SwipeItem","doc":null,"attributes":[{"name":"Invoked","type":"Microsoft.Maui.Controls.SwipeItem.EventHandler\u00601","isEvent":true},{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.SwipeItem.BackgroundColor"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.SwipeItem.IsVisible"},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"SwipeItems","type":"Microsoft.Maui.Controls.SwipeItems","doc":null,"attributes":[{"name":"CollectionChanged","type":"Microsoft.Maui.Controls.SwipeItems.NotifyCollectionChangedEventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Mode","type":"Microsoft.Maui.Controls.SwipeItems.Mode","values":[{"name":"value__","type":"Microsoft.Maui.SwipeMode.value__"},{"name":"Reveal","type":"Microsoft.Maui.SwipeMode.Reveal"},{"name":"Execute","type":"Microsoft.Maui.SwipeMode.Execute"}]},{"name":"SwipeBehaviorOnInvoked","type":"Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked","values":[{"name":"value__","type":"Microsoft.Maui.SwipeBehaviorOnInvoked.value__"},{"name":"Auto","type":"Microsoft.Maui.SwipeBehaviorOnInvoked.Auto"},{"name":"Close","type":"Microsoft.Maui.SwipeBehaviorOnInvoked.Close"},{"name":"RemainOpen","type":"Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen"}]},{"name":"Item","type":"Microsoft.Maui.Controls.SwipeItems.Item"},{"name":"Count","type":"Microsoft.Maui.Controls.SwipeItems.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.SwipeItems.IsReadOnly"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SwipeItemView","type":"Microsoft.Maui.Controls.SwipeItemView","doc":null,"attributes":[{"name":"Invoked","type":"Microsoft.Maui.Controls.SwipeItemView.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.SwipeItemView.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.SwipeItemView.CommandParameter"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SwipeView","type":"Microsoft.Maui.Controls.SwipeView","doc":null,"attributes":[{"name":"SwipeStarted","type":"Microsoft.Maui.Controls.SwipeView.EventHandler\u00601","isEvent":true},{"name":"SwipeChanging","type":"Microsoft.Maui.Controls.SwipeView.EventHandler\u00601","isEvent":true},{"name":"SwipeEnded","type":"Microsoft.Maui.Controls.SwipeView.EventHandler\u00601","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Threshold","type":"Microsoft.Maui.Controls.SwipeView.Threshold"},{"name":"LeftItems","type":"Microsoft.Maui.Controls.SwipeView.LeftItems"},{"name":"RightItems","type":"Microsoft.Maui.Controls.SwipeView.RightItems"},{"name":"TopItems","type":"Microsoft.Maui.Controls.SwipeView.TopItems"},{"name":"BottomItems","type":"Microsoft.Maui.Controls.SwipeView.BottomItems"},{"name":"Content","type":"Microsoft.Maui.Controls.ContentView.Content"},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Switch","type":"Microsoft.Maui.Controls.Switch","doc":null,"attributes":[{"name":"Toggled","type":"Microsoft.Maui.Controls.Switch.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"OnColor","type":"Microsoft.Maui.Controls.Switch.OnColor"},{"name":"ThumbColor","type":"Microsoft.Maui.Controls.Switch.ThumbColor"},{"name":"IsToggled","type":"Microsoft.Maui.Controls.Switch.IsToggled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TabbedPage","type":"Microsoft.Maui.Controls.TabbedPage","doc":null,"attributes":[{"name":"CurrentPageChanged","type":"Microsoft.Maui.Controls.MultiPage\u00601.EventHandler","isEvent":true},{"name":"PagesChanged","type":"Microsoft.Maui.Controls.MultiPage\u00601.NotifyCollectionChangedEventHandler","isEvent":true},{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"BarBackgroundColor","type":"Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor"},{"name":"BarBackground","type":"Microsoft.Maui.Controls.TabbedPage.BarBackground"},{"name":"BarTextColor","type":"Microsoft.Maui.Controls.TabbedPage.BarTextColor"},{"name":"UnselectedTabColor","type":"Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor"},{"name":"SelectedTabColor","type":"Microsoft.Maui.Controls.TabbedPage.SelectedTabColor"},{"name":"ItemsSource","type":"Microsoft.Maui.Controls.MultiPage\u00601.ItemsSource"},{"name":"ItemTemplate","type":"Microsoft.Maui.Controls.MultiPage\u00601.ItemTemplate"},{"name":"SelectedItem","type":"Microsoft.Maui.Controls.MultiPage\u00601.SelectedItem"},{"name":"CurrentPage","type":"Microsoft.Maui.Controls.MultiPage\u00601.CurrentPage"},{"name":"Children","type":"Microsoft.Maui.Controls.MultiPage\u00601.Children"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TableRoot","type":"Microsoft.Maui.Controls.TableRoot","doc":null,"attributes":[{"name":"CollectionChanged","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.NotifyCollectionChangedEventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Count","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.Count"},{"name":"Item","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.Item"},{"name":"Title","type":"Microsoft.Maui.Controls.TableSectionBase.Title"},{"name":"TextColor","type":"Microsoft.Maui.Controls.TableSectionBase.TextColor"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TableSection","type":"Microsoft.Maui.Controls.TableSection","doc":null,"attributes":[{"name":"CollectionChanged","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.NotifyCollectionChangedEventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Count","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.Count"},{"name":"Item","type":"Microsoft.Maui.Controls.TableSectionBase\u00601.Item"},{"name":"Title","type":"Microsoft.Maui.Controls.TableSectionBase.Title"},{"name":"TextColor","type":"Microsoft.Maui.Controls.TableSectionBase.TextColor"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TableView","type":"Microsoft.Maui.Controls.TableView","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"HasUnevenRows","type":"Microsoft.Maui.Controls.TableView.HasUnevenRows"},{"name":"Intent","type":"Microsoft.Maui.Controls.TableView.Intent","values":[{"name":"value__","type":"Microsoft.Maui.Controls.TableIntent.value__"},{"name":"Menu","type":"Microsoft.Maui.Controls.TableIntent.Menu"},{"name":"Settings","type":"Microsoft.Maui.Controls.TableIntent.Settings"},{"name":"Form","type":"Microsoft.Maui.Controls.TableIntent.Form"},{"name":"Data","type":"Microsoft.Maui.Controls.TableIntent.Data"}]},{"name":"Root","type":"Microsoft.Maui.Controls.TableView.Root"},{"name":"RowHeight","type":"Microsoft.Maui.Controls.TableView.RowHeight"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TapGestureRecognizer","type":"Microsoft.Maui.Controls.TapGestureRecognizer","doc":null,"attributes":[{"name":"Tapped","type":"Microsoft.Maui.Controls.TapGestureRecognizer.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Command","type":"Microsoft.Maui.Controls.TapGestureRecognizer.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter"},{"name":"NumberOfTapsRequired","type":"Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired"},{"name":"Buttons","type":"Microsoft.Maui.Controls.TapGestureRecognizer.Buttons","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ButtonsMask.value__"},{"name":"Primary","type":"Microsoft.Maui.Controls.ButtonsMask.Primary"},{"name":"Secondary","type":"Microsoft.Maui.Controls.ButtonsMask.Secondary"}]},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TemplatedPage","type":"Microsoft.Maui.Controls.TemplatedPage","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Appearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"Disappearing","type":"Microsoft.Maui.Controls.Page.EventHandler","isEvent":true},{"name":"NavigatedTo","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatingFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"NavigatedFrom","type":"Microsoft.Maui.Controls.Page.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedPage.ControlTemplate"},{"name":"BackgroundImageSource","type":"Microsoft.Maui.Controls.Page.BackgroundImageSource"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.Page.IconImageSource"},{"name":"IsBusy","type":"Microsoft.Maui.Controls.Page.IsBusy"},{"name":"Padding","type":"Microsoft.Maui.Controls.Page.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"Title","type":"Microsoft.Maui.Controls.Page.Title"},{"name":"ToolbarItems","type":"Microsoft.Maui.Controls.Page.ToolbarItems"},{"name":"MenuBarItems","type":"Microsoft.Maui.Controls.Page.MenuBarItems"},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TemplatedView","type":"Microsoft.Maui.Controls.TemplatedView","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ControlTemplate","type":"Microsoft.Maui.Controls.TemplatedView.ControlTemplate"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TimePicker","type":"Microsoft.Maui.Controls.TimePicker","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Format","type":"Microsoft.Maui.Controls.TimePicker.Format"},{"name":"TextColor","type":"Microsoft.Maui.Controls.TimePicker.TextColor"},{"name":"CharacterSpacing","type":"Microsoft.Maui.Controls.TimePicker.CharacterSpacing"},{"name":"Time","type":"Microsoft.Maui.Controls.TimePicker.Time","values":[{"name":"Zero","type":"System.TimeSpan.Zero"},{"name":"MaxValue","type":"System.TimeSpan.MaxValue"},{"name":"MinValue","type":"System.TimeSpan.MinValue"},{"name":"NanosecondsPerTick","type":"System.TimeSpan.NanosecondsPerTick"},{"name":"TicksPerMicrosecond","type":"System.TimeSpan.TicksPerMicrosecond"},{"name":"TicksPerMillisecond","type":"System.TimeSpan.TicksPerMillisecond"},{"name":"TicksPerSecond","type":"System.TimeSpan.TicksPerSecond"},{"name":"TicksPerMinute","type":"System.TimeSpan.TicksPerMinute"},{"name":"TicksPerHour","type":"System.TimeSpan.TicksPerHour"},{"name":"TicksPerDay","type":"System.TimeSpan.TicksPerDay"}]},{"name":"FontAttributes","type":"Microsoft.Maui.Controls.TimePicker.FontAttributes","values":[{"name":"value__","type":"Microsoft.Maui.Controls.FontAttributes.value__"},{"name":"None","type":"Microsoft.Maui.Controls.FontAttributes.None"},{"name":"Bold","type":"Microsoft.Maui.Controls.FontAttributes.Bold"},{"name":"Italic","type":"Microsoft.Maui.Controls.FontAttributes.Italic"}]},{"name":"FontFamily","type":"Microsoft.Maui.Controls.TimePicker.FontFamily"},{"name":"FontSize","type":"Microsoft.Maui.Controls.TimePicker.FontSize"},{"name":"FontAutoScalingEnabled","type":"Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ToolbarItem","type":"Microsoft.Maui.Controls.ToolbarItem","doc":null,"attributes":[{"name":"Clicked","type":"Microsoft.Maui.Controls.MenuItem.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Order","type":"Microsoft.Maui.Controls.ToolbarItem.Order","values":[{"name":"value__","type":"Microsoft.Maui.Controls.ToolbarItemOrder.value__"},{"name":"Default","type":"Microsoft.Maui.Controls.ToolbarItemOrder.Default"},{"name":"Primary","type":"Microsoft.Maui.Controls.ToolbarItemOrder.Primary"},{"name":"Secondary","type":"Microsoft.Maui.Controls.ToolbarItemOrder.Secondary"}]},{"name":"Priority","type":"Microsoft.Maui.Controls.ToolbarItem.Priority"},{"name":"Command","type":"Microsoft.Maui.Controls.MenuItem.Command"},{"name":"CommandParameter","type":"Microsoft.Maui.Controls.MenuItem.CommandParameter"},{"name":"IconImageSource","type":"Microsoft.Maui.Controls.MenuItem.IconImageSource"},{"name":"IsDestructive","type":"Microsoft.Maui.Controls.MenuItem.IsDestructive"},{"name":"Text","type":"Microsoft.Maui.Controls.MenuItem.Text"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.MenuItem.IsEnabled"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.MenuItem.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.MenuItem.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Accelerator","type":"Microsoft.Maui.Controls.MenuItem.Accelerator","isAttached":true,"isObsolete":true}]},{"name":"UrlWebViewSource","type":"Microsoft.Maui.Controls.UrlWebViewSource","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Url","type":"Microsoft.Maui.Controls.UrlWebViewSource.Url"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"View","type":"Microsoft.Maui.Controls.View","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"VisualElement","type":"Microsoft.Maui.Controls.VisualElement","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"WebView","type":"Microsoft.Maui.Controls.WebView","doc":null,"attributes":[{"name":"Navigated","type":"Microsoft.Maui.Controls.WebView.EventHandler\u00601","isEvent":true},{"name":"Navigating","type":"Microsoft.Maui.Controls.WebView.EventHandler\u00601","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CanGoBack","type":"Microsoft.Maui.Controls.WebView.CanGoBack"},{"name":"CanGoForward","type":"Microsoft.Maui.Controls.WebView.CanGoForward"},{"name":"UserAgent","type":"Microsoft.Maui.Controls.WebView.UserAgent"},{"name":"Cookies","type":"Microsoft.Maui.Controls.WebView.Cookies"},{"name":"Source","type":"Microsoft.Maui.Controls.WebView.Source"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Window","type":"Microsoft.Maui.Controls.Window","doc":null,"attributes":[{"name":"SizeChanged","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"ModalPopped","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"ModalPopping","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"ModalPushed","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"ModalPushing","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"PopCanceled","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Created","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Resumed","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Activated","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Deactivated","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Stopped","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Destroying","type":"Microsoft.Maui.Controls.Window.EventHandler","isEvent":true},{"name":"Backgrounding","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"DisplayDensityChanged","type":"Microsoft.Maui.Controls.Window.EventHandler\u00601","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Overlays","type":"Microsoft.Maui.Controls.Window.Overlays"},{"name":"VisualDiagnosticsOverlay","type":"Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay"},{"name":"Title","type":"Microsoft.Maui.Controls.Window.Title"},{"name":"Page","type":"Microsoft.Maui.Controls.Window.Page"},{"name":"X","type":"Microsoft.Maui.Controls.Window.X"},{"name":"Y","type":"Microsoft.Maui.Controls.Window.Y"},{"name":"Width","type":"Microsoft.Maui.Controls.Window.Width"},{"name":"Height","type":"Microsoft.Maui.Controls.Window.Height"},{"name":"MaximumWidth","type":"Microsoft.Maui.Controls.Window.MaximumWidth"},{"name":"MaximumHeight","type":"Microsoft.Maui.Controls.Window.MaximumHeight"},{"name":"MinimumWidth","type":"Microsoft.Maui.Controls.Window.MinimumWidth"},{"name":"MinimumHeight","type":"Microsoft.Maui.Controls.Window.MinimumHeight"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.Window.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"DisplayDensity","type":"Microsoft.Maui.Controls.Window.DisplayDensity"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ArcSegment","type":"Microsoft.Maui.Controls.Shapes.ArcSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Point","type":"Microsoft.Maui.Controls.Shapes.ArcSegment.Point","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Size","type":"Microsoft.Maui.Controls.Shapes.ArcSegment.Size","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"RotationAngle","type":"Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle"},{"name":"SweepDirection","type":"Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection","values":[{"name":"value__","type":"Microsoft.Maui.Controls.SweepDirection.value__"},{"name":"CounterClockwise","type":"Microsoft.Maui.Controls.SweepDirection.CounterClockwise"},{"name":"Clockwise","type":"Microsoft.Maui.Controls.SweepDirection.Clockwise"}]},{"name":"IsLargeArc","type":"Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BezierSegment","type":"Microsoft.Maui.Controls.Shapes.BezierSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Point1","type":"Microsoft.Maui.Controls.Shapes.BezierSegment.Point1","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Point2","type":"Microsoft.Maui.Controls.Shapes.BezierSegment.Point2","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Point3","type":"Microsoft.Maui.Controls.Shapes.BezierSegment.Point3","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"CompositeTransform","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CenterX","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX"},{"name":"CenterY","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY"},{"name":"SkewX","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX"},{"name":"SkewY","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY"},{"name":"Rotation","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation"},{"name":"TranslateX","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX"},{"name":"TranslateY","type":"Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Ellipse","type":"Microsoft.Maui.Controls.Shapes.Ellipse","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"EllipseGeometry","type":"Microsoft.Maui.Controls.Shapes.EllipseGeometry","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Center","type":"Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"RadiusX","type":"Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX"},{"name":"RadiusY","type":"Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"GeometryGroup","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup","doc":null,"attributes":[{"name":"InvalidateGeometryRequested","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.Children"},{"name":"FillRule","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.FillRule.value__"},{"name":"EvenOdd","type":"Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd"},{"name":"Nonzero","type":"Microsoft.Maui.Controls.Shapes.FillRule.Nonzero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Line","type":"Microsoft.Maui.Controls.Shapes.Line","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"X1","type":"Microsoft.Maui.Controls.Shapes.Line.X1"},{"name":"Y1","type":"Microsoft.Maui.Controls.Shapes.Line.Y1"},{"name":"X2","type":"Microsoft.Maui.Controls.Shapes.Line.X2"},{"name":"Y2","type":"Microsoft.Maui.Controls.Shapes.Line.Y2"},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"LineGeometry","type":"Microsoft.Maui.Controls.Shapes.LineGeometry","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"StartPoint","type":"Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"EndPoint","type":"Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"LineSegment","type":"Microsoft.Maui.Controls.Shapes.LineSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Point","type":"Microsoft.Maui.Controls.Shapes.LineSegment.Point","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"MatrixTransform","type":"Microsoft.Maui.Controls.Shapes.MatrixTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Matrix","type":"Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Path","type":"Microsoft.Maui.Controls.Shapes.Path","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Data","type":"Microsoft.Maui.Controls.Shapes.Path.Data"},{"name":"RenderTransform","type":"Microsoft.Maui.Controls.Shapes.Path.RenderTransform"},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PathFigure","type":"Microsoft.Maui.Controls.Shapes.PathFigure","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Segments","type":"Microsoft.Maui.Controls.Shapes.PathFigure.Segments"},{"name":"StartPoint","type":"Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"IsClosed","type":"Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed"},{"name":"IsFilled","type":"Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PathGeometry","type":"Microsoft.Maui.Controls.Shapes.PathGeometry","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Figures","type":"Microsoft.Maui.Controls.Shapes.PathGeometry.Figures"},{"name":"FillRule","type":"Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.FillRule.value__"},{"name":"EvenOdd","type":"Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd"},{"name":"Nonzero","type":"Microsoft.Maui.Controls.Shapes.FillRule.Nonzero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PolyBezierSegment","type":"Microsoft.Maui.Controls.Shapes.PolyBezierSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Points","type":"Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Polygon","type":"Microsoft.Maui.Controls.Shapes.Polygon","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Points","type":"Microsoft.Maui.Controls.Shapes.Polygon.Points"},{"name":"FillRule","type":"Microsoft.Maui.Controls.Shapes.Polygon.FillRule","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.FillRule.value__"},{"name":"EvenOdd","type":"Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd"},{"name":"Nonzero","type":"Microsoft.Maui.Controls.Shapes.FillRule.Nonzero"}]},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Polyline","type":"Microsoft.Maui.Controls.Shapes.Polyline","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Points","type":"Microsoft.Maui.Controls.Shapes.Polyline.Points"},{"name":"FillRule","type":"Microsoft.Maui.Controls.Shapes.Polyline.FillRule","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.FillRule.value__"},{"name":"EvenOdd","type":"Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd"},{"name":"Nonzero","type":"Microsoft.Maui.Controls.Shapes.FillRule.Nonzero"}]},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PolyLineSegment","type":"Microsoft.Maui.Controls.Shapes.PolyLineSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Points","type":"Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"PolyQuadraticBezierSegment","type":"Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Points","type":"Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"QuadraticBezierSegment","type":"Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Point1","type":"Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Point2","type":"Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Point.Zero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Rectangle","type":"Microsoft.Maui.Controls.Shapes.Rectangle","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"RadiusX","type":"Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX"},{"name":"RadiusY","type":"Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY"},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RectangleGeometry","type":"Microsoft.Maui.Controls.Shapes.RectangleGeometry","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Rect","type":"Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RotateTransform","type":"Microsoft.Maui.Controls.Shapes.RotateTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Angle","type":"Microsoft.Maui.Controls.Shapes.RotateTransform.Angle"},{"name":"CenterX","type":"Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX"},{"name":"CenterY","type":"Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RoundRectangle","type":"Microsoft.Maui.Controls.Shapes.RoundRectangle","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius"},{"name":"Fill","type":"Microsoft.Maui.Controls.Shapes.Shape.Fill"},{"name":"Stroke","type":"Microsoft.Maui.Controls.Shapes.Shape.Stroke"},{"name":"StrokeThickness","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness"},{"name":"StrokeDashArray","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray"},{"name":"StrokeDashOffset","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset"},{"name":"StrokeLineCap","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.value__"},{"name":"Flat","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Flat"},{"name":"Square","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Square"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineCap.Round"}]},{"name":"StrokeLineJoin","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.value__"},{"name":"Miter","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter"},{"name":"Bevel","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel"},{"name":"Round","type":"Microsoft.Maui.Controls.Shapes.PenLineJoin.Round"}]},{"name":"StrokeMiterLimit","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit"},{"name":"Aspect","type":"Microsoft.Maui.Controls.Shapes.Shape.Aspect","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Stretch.value__"},{"name":"None","type":"Microsoft.Maui.Controls.Stretch.None"},{"name":"Fill","type":"Microsoft.Maui.Controls.Stretch.Fill"},{"name":"Uniform","type":"Microsoft.Maui.Controls.Stretch.Uniform"},{"name":"UniformToFill","type":"Microsoft.Maui.Controls.Stretch.UniformToFill"}]},{"name":"StrokeDashPattern","type":"Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"RoundRectangleGeometry","type":"Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry","doc":null,"attributes":[{"name":"InvalidateGeometryRequested","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Rect","type":"Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"CornerRadius","type":"Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius"},{"name":"Children","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.Children"},{"name":"FillRule","type":"Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule","values":[{"name":"value__","type":"Microsoft.Maui.Controls.Shapes.FillRule.value__"},{"name":"EvenOdd","type":"Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd"},{"name":"Nonzero","type":"Microsoft.Maui.Controls.Shapes.FillRule.Nonzero"}]},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"ScaleTransform","type":"Microsoft.Maui.Controls.Shapes.ScaleTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ScaleX","type":"Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY"},{"name":"CenterX","type":"Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX"},{"name":"CenterY","type":"Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"SkewTransform","type":"Microsoft.Maui.Controls.Shapes.SkewTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AngleX","type":"Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX"},{"name":"AngleY","type":"Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY"},{"name":"CenterX","type":"Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX"},{"name":"CenterY","type":"Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"Transform","type":"Microsoft.Maui.Controls.Shapes.Transform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TransformGroup","type":"Microsoft.Maui.Controls.Shapes.TransformGroup","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Shapes.TransformGroup.Children"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"TranslateTransform","type":"Microsoft.Maui.Controls.Shapes.TranslateTransform","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"X","type":"Microsoft.Maui.Controls.Shapes.TranslateTransform.X"},{"name":"Y","type":"Microsoft.Maui.Controls.Shapes.TranslateTransform.Y"},{"name":"Value","type":"Microsoft.Maui.Controls.Shapes.Transform.Value"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AbsoluteLayout","type":"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children"},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Children"},{"name":"LayoutHandler","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.LayoutHandler"},{"name":"Item","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"LayoutBounds","type":"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}],"isAttached":true},{"name":"LayoutFlags","type":"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlags","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.value__"},{"name":"None","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None"},{"name":"XProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional"},{"name":"YProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional"},{"name":"WidthProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional"},{"name":"HeightProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional"},{"name":"PositionProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional"},{"name":"SizeProportional","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional"},{"name":"All","type":"Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All"}],"isAttached":true}]},{"name":"FlexLayout","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Direction","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexDirection.value__"},{"name":"Column","type":"Microsoft.Maui.Layouts.FlexDirection.Column"},{"name":"ColumnReverse","type":"Microsoft.Maui.Layouts.FlexDirection.ColumnReverse"},{"name":"Row","type":"Microsoft.Maui.Layouts.FlexDirection.Row"},{"name":"RowReverse","type":"Microsoft.Maui.Layouts.FlexDirection.RowReverse"}]},{"name":"JustifyContent","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexJustify.value__"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexJustify.Start"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexJustify.Center"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexJustify.End"},{"name":"SpaceBetween","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceBetween"},{"name":"SpaceAround","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceAround"},{"name":"SpaceEvenly","type":"Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly"}]},{"name":"AlignContent","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignContent.value__"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignContent.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignContent.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignContent.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignContent.End"},{"name":"SpaceBetween","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween"},{"name":"SpaceAround","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround"},{"name":"SpaceEvenly","type":"Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly"}]},{"name":"AlignItems","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignItems.value__"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignItems.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignItems.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignItems.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignItems.End"}]},{"name":"Position","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Position","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexPosition.value__"},{"name":"Relative","type":"Microsoft.Maui.Layouts.FlexPosition.Relative"},{"name":"Absolute","type":"Microsoft.Maui.Layouts.FlexPosition.Absolute"}]},{"name":"Wrap","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexWrap.value__"},{"name":"NoWrap","type":"Microsoft.Maui.Layouts.FlexWrap.NoWrap"},{"name":"Wrap","type":"Microsoft.Maui.Layouts.FlexWrap.Wrap"},{"name":"Reverse","type":"Microsoft.Maui.Layouts.FlexWrap.Reverse"}]},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Children"},{"name":"LayoutHandler","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.LayoutHandler"},{"name":"Item","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Order","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Order","isAttached":true},{"name":"Grow","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Grow","isAttached":true},{"name":"Shrink","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Shrink","isAttached":true},{"name":"AlignSelf","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelf","values":[{"name":"value__","type":"Microsoft.Maui.Layouts.FlexAlignSelf.value__"},{"name":"Auto","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Auto"},{"name":"Stretch","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Stretch"},{"name":"Center","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Center"},{"name":"Start","type":"Microsoft.Maui.Layouts.FlexAlignSelf.Start"},{"name":"End","type":"Microsoft.Maui.Layouts.FlexAlignSelf.End"}],"isAttached":true},{"name":"Basis","type":"Microsoft.Maui.Controls.Compatibility.FlexLayout.Basis","values":[{"name":"Auto","type":"Microsoft.Maui.Layouts.FlexBasis.Auto"}],"isAttached":true}]},{"name":"Grid","type":"Microsoft.Maui.Controls.Compatibility.Grid","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Grid.Children"},{"name":"ColumnDefinitions","type":"Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions"},{"name":"ColumnSpacing","type":"Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing"},{"name":"RowDefinitions","type":"Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions"},{"name":"RowSpacing","type":"Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Children"},{"name":"LayoutHandler","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.LayoutHandler"},{"name":"Item","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Column","type":"Microsoft.Maui.Controls.Compatibility.Grid.Column","isAttached":true},{"name":"ColumnSpan","type":"Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpan","isAttached":true},{"name":"Row","type":"Microsoft.Maui.Controls.Compatibility.Grid.Row","isAttached":true},{"name":"RowSpan","type":"Microsoft.Maui.Controls.Compatibility.Grid.RowSpan","isAttached":true}]},{"name":"RelativeLayout","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children"},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Children"},{"name":"LayoutHandler","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.LayoutHandler"},{"name":"Item","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"BoundsConstraint","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraint","isAttached":true},{"name":"HeightConstraint","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraint","isAttached":true},{"name":"WidthConstraint","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraint","isAttached":true},{"name":"XConstraint","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraint","isAttached":true},{"name":"YConstraint","type":"Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraint","isAttached":true}]},{"name":"StackLayout","type":"Microsoft.Maui.Controls.Compatibility.StackLayout","doc":null,"attributes":[{"name":"LayoutChanged","type":"Microsoft.Maui.Controls.Compatibility.Layout.EventHandler","isEvent":true},{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Orientation","type":"Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation","values":[{"name":"value__","type":"Microsoft.Maui.Controls.StackOrientation.value__"},{"name":"Vertical","type":"Microsoft.Maui.Controls.StackOrientation.Vertical"},{"name":"Horizontal","type":"Microsoft.Maui.Controls.StackOrientation.Horizontal"}]},{"name":"Spacing","type":"Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Children"},{"name":"LayoutHandler","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.LayoutHandler"},{"name":"Item","type":"Microsoft.Maui.Controls.Compatibility.Layout\u00601.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Compatibility.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AppThemeProxy","type":"Microsoft.Maui.Controls.AppThemeProxy","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"Binding","type":"Microsoft.Maui.Controls.AppThemeProxy.Binding"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"AndExpandGrid","type":"Microsoft.Maui.Controls.AndExpandGrid","doc":null,"attributes":[{"name":"ChildrenReordered","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Focused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"MeasureInvalidated","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"SizeChanged","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unfocused","type":"Microsoft.Maui.Controls.VisualElement.EventHandler\u00601","isEvent":true},{"name":"Loaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"Unloaded","type":"Microsoft.Maui.Controls.VisualElement.EventHandler","isEvent":true},{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"ColumnDefinitions","type":"Microsoft.Maui.Controls.Grid.ColumnDefinitions"},{"name":"RowDefinitions","type":"Microsoft.Maui.Controls.Grid.RowDefinitions"},{"name":"RowSpacing","type":"Microsoft.Maui.Controls.Grid.RowSpacing"},{"name":"ColumnSpacing","type":"Microsoft.Maui.Controls.Grid.ColumnSpacing"},{"name":"Children","type":"Microsoft.Maui.Controls.Layout.Children"},{"name":"Count","type":"Microsoft.Maui.Controls.Layout.Count"},{"name":"IsReadOnly","type":"Microsoft.Maui.Controls.Layout.IsReadOnly"},{"name":"Item","type":"Microsoft.Maui.Controls.Layout.Item"},{"name":"IsClippedToBounds","type":"Microsoft.Maui.Controls.Layout.IsClippedToBounds"},{"name":"Padding","type":"Microsoft.Maui.Controls.Layout.Padding","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"IgnoreSafeArea","type":"Microsoft.Maui.Controls.Layout.IgnoreSafeArea"},{"name":"CascadeInputTransparent","type":"Microsoft.Maui.Controls.Layout.CascadeInputTransparent"},{"name":"GestureRecognizers","type":"Microsoft.Maui.Controls.View.GestureRecognizers"},{"name":"HorizontalOptions","type":"Microsoft.Maui.Controls.View.HorizontalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Margin","type":"Microsoft.Maui.Controls.View.Margin","values":[{"name":"Zero","type":"Microsoft.Maui.Thickness.Zero"}]},{"name":"VerticalOptions","type":"Microsoft.Maui.Controls.View.VerticalOptions","values":[{"name":"Start","type":"Microsoft.Maui.Controls.LayoutOptions.Start"},{"name":"Center","type":"Microsoft.Maui.Controls.LayoutOptions.Center"},{"name":"End","type":"Microsoft.Maui.Controls.LayoutOptions.End"},{"name":"Fill","type":"Microsoft.Maui.Controls.LayoutOptions.Fill"},{"name":"StartAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.StartAndExpand","isObsolete":true},{"name":"CenterAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand","isObsolete":true},{"name":"EndAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.EndAndExpand","isObsolete":true},{"name":"FillAndExpand","type":"Microsoft.Maui.Controls.LayoutOptions.FillAndExpand","isObsolete":true}]},{"name":"Visual","type":"Microsoft.Maui.Controls.VisualElement.Visual"},{"name":"FlowDirection","type":"Microsoft.Maui.Controls.VisualElement.FlowDirection","values":[{"name":"value__","type":"Microsoft.Maui.FlowDirection.value__"},{"name":"MatchParent","type":"Microsoft.Maui.FlowDirection.MatchParent"},{"name":"LeftToRight","type":"Microsoft.Maui.FlowDirection.LeftToRight"},{"name":"RightToLeft","type":"Microsoft.Maui.FlowDirection.RightToLeft"}]},{"name":"Window","type":"Microsoft.Maui.Controls.VisualElement.Window"},{"name":"AnchorX","type":"Microsoft.Maui.Controls.VisualElement.AnchorX"},{"name":"AnchorY","type":"Microsoft.Maui.Controls.VisualElement.AnchorY"},{"name":"BackgroundColor","type":"Microsoft.Maui.Controls.VisualElement.BackgroundColor"},{"name":"Background","type":"Microsoft.Maui.Controls.VisualElement.Background"},{"name":"Behaviors","type":"Microsoft.Maui.Controls.VisualElement.Behaviors"},{"name":"Bounds","type":"Microsoft.Maui.Controls.VisualElement.Bounds","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Height","type":"Microsoft.Maui.Controls.VisualElement.Height"},{"name":"HeightRequest","type":"Microsoft.Maui.Controls.VisualElement.HeightRequest"},{"name":"InputTransparent","type":"Microsoft.Maui.Controls.VisualElement.InputTransparent"},{"name":"IsEnabled","type":"Microsoft.Maui.Controls.VisualElement.IsEnabled"},{"name":"IsFocused","type":"Microsoft.Maui.Controls.VisualElement.IsFocused"},{"name":"IsVisible","type":"Microsoft.Maui.Controls.VisualElement.IsVisible"},{"name":"MinimumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest"},{"name":"MinimumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest"},{"name":"MaximumHeightRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest"},{"name":"MaximumWidthRequest","type":"Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest"},{"name":"Opacity","type":"Microsoft.Maui.Controls.VisualElement.Opacity"},{"name":"Rotation","type":"Microsoft.Maui.Controls.VisualElement.Rotation"},{"name":"RotationX","type":"Microsoft.Maui.Controls.VisualElement.RotationX"},{"name":"RotationY","type":"Microsoft.Maui.Controls.VisualElement.RotationY"},{"name":"Scale","type":"Microsoft.Maui.Controls.VisualElement.Scale"},{"name":"ScaleX","type":"Microsoft.Maui.Controls.VisualElement.ScaleX"},{"name":"ScaleY","type":"Microsoft.Maui.Controls.VisualElement.ScaleY"},{"name":"TranslationX","type":"Microsoft.Maui.Controls.VisualElement.TranslationX"},{"name":"TranslationY","type":"Microsoft.Maui.Controls.VisualElement.TranslationY"},{"name":"Triggers","type":"Microsoft.Maui.Controls.VisualElement.Triggers"},{"name":"Width","type":"Microsoft.Maui.Controls.VisualElement.Width"},{"name":"WidthRequest","type":"Microsoft.Maui.Controls.VisualElement.WidthRequest"},{"name":"X","type":"Microsoft.Maui.Controls.VisualElement.X"},{"name":"Y","type":"Microsoft.Maui.Controls.VisualElement.Y"},{"name":"Clip","type":"Microsoft.Maui.Controls.VisualElement.Clip"},{"name":"Resources","type":"Microsoft.Maui.Controls.VisualElement.Resources"},{"name":"Frame","type":"Microsoft.Maui.Controls.VisualElement.Frame","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Rect.Zero"}]},{"name":"Handler","type":"Microsoft.Maui.Controls.VisualElement.Handler"},{"name":"Shadow","type":"Microsoft.Maui.Controls.VisualElement.Shadow"},{"name":"ZIndex","type":"Microsoft.Maui.Controls.VisualElement.ZIndex"},{"name":"DesiredSize","type":"Microsoft.Maui.Controls.VisualElement.DesiredSize","values":[{"name":"Zero","type":"Microsoft.Maui.Graphics.Size.Zero"}]},{"name":"IsLoaded","type":"Microsoft.Maui.Controls.VisualElement.IsLoaded"},{"name":"Navigation","type":"Microsoft.Maui.Controls.NavigableElement.Navigation"},{"name":"Style","type":"Microsoft.Maui.Controls.NavigableElement.Style"},{"name":"StyleClass","type":"Microsoft.Maui.Controls.NavigableElement.StyleClass"},{"name":"class","type":"Microsoft.Maui.Controls.NavigableElement.class"},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"},{"name":"Column","type":"Microsoft.Maui.Controls.Grid.Column","isAttached":true},{"name":"ColumnSpan","type":"Microsoft.Maui.Controls.Grid.ColumnSpan","isAttached":true},{"name":"Row","type":"Microsoft.Maui.Controls.Grid.Row","isAttached":true},{"name":"RowSpan","type":"Microsoft.Maui.Controls.Grid.RowSpan","isAttached":true}]},{"name":"ProxyElement","type":"Microsoft.Maui.Controls.ProxyElement","doc":null,"attributes":[{"name":"ChildAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ChildRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantAdded","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"DescendantRemoved","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"ParentChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"HandlerChanging","type":"Microsoft.Maui.Controls.Element.EventHandler\u00601","isEvent":true},{"name":"HandlerChanged","type":"Microsoft.Maui.Controls.Element.EventHandler","isEvent":true},{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"AutomationId","type":"Microsoft.Maui.Controls.Element.AutomationId"},{"name":"ClassId","type":"Microsoft.Maui.Controls.Element.ClassId"},{"name":"Effects","type":"Microsoft.Maui.Controls.Element.Effects"},{"name":"Id","type":"Microsoft.Maui.Controls.Element.Id","values":[{"name":"Empty","type":"System.Guid.Empty"}]},{"name":"StyleId","type":"Microsoft.Maui.Controls.Element.StyleId"},{"name":"Parent","type":"Microsoft.Maui.Controls.Element.Parent"},{"name":"Handler","type":"Microsoft.Maui.Controls.Element.Handler"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]},{"name":"BindableObjectProxy\u00601","type":"Microsoft.Maui.Controls.Internals.BindableObjectProxy\u00601","doc":null,"attributes":[{"name":"PropertyChanged","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangedEventHandler","isEvent":true},{"name":"PropertyChanging","type":"Microsoft.Maui.Controls.BindableObject.PropertyChangingEventHandler","isEvent":true},{"name":"BindingContextChanged","type":"Microsoft.Maui.Controls.BindableObject.EventHandler","isEvent":true},{"name":"TargetReference","type":"Microsoft.Maui.Controls.Internals.BindableObjectProxy\u00601.TargetReference"},{"name":"BindingsBackpack","type":"Microsoft.Maui.Controls.Internals.BindableObjectProxy\u00601.BindingsBackpack"},{"name":"ValuesBackpack","type":"Microsoft.Maui.Controls.Internals.BindableObjectProxy\u00601.ValuesBackpack"},{"name":"Dispatcher","type":"Microsoft.Maui.Controls.BindableObject.Dispatcher"},{"name":"BindingContext","type":"Microsoft.Maui.Controls.BindableObject.BindingContext"}]}],"timestamp":"5/26/2024 2:59:44\u202FPM","target":"/Users/minnbran/GitHub/GitHubApiStatus/samples/GitStatus.Mobile/bin/Debug/net8.0-maccatalyst/maccatalyst-arm64"} diff --git a/samples/GitStatus.Mobile/GitStatus.Mobile.csproj b/samples/GitStatus.Mobile/GitStatus.Mobile.csproj index 7edf58a..959018c 100644 --- a/samples/GitStatus.Mobile/GitStatus.Mobile.csproj +++ b/samples/GitStatus.Mobile/GitStatus.Mobile.csproj @@ -1,65 +1,62 @@ - - - net7.0-android;net7.0-ios;net7.0-maccatalyst - $(TargetFrameworks);net7.0-windows10.0.19041.0 - - - Exe - GitStatus - true - true - enable - - - GitStatus - - - com.companyname.gitstatus - d59c13f1-7219-4005-84db-ecb85268429c - - - 1.0 - 1 - - 14.2 - 14.0 - 21.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + $(LatestSupportedNetVersion)-android;$(LatestSupportedNetVersion)-ios;$(LatestSupportedNetVersion)-maccatalyst + $(TargetFrameworks);$(LatestSupportedNetVersion)-windows10.0.19041.0 + + + Exe + GitStatus + true + true + enable + + + GitStatus + + + com.companyname.gitstatus + d59c13f1-7219-4005-84db-ecb85268429c + + + 1.0 + 1 + + 14.2 + 14.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/GitStatus.Mobile/Platforms/Android/MainActivity.cs b/samples/GitStatus.Mobile/Platforms/Android/MainActivity.cs index 519fbdc..f3ff0b5 100644 --- a/samples/GitStatus.Mobile/Platforms/Android/MainActivity.cs +++ b/samples/GitStatus.Mobile/Platforms/Android/MainActivity.cs @@ -1,6 +1,5 @@ using Android.App; using Android.Content.PM; -using Android.OS; namespace GitStatus; diff --git a/samples/GitStatus.Mobile/Platforms/MacCatalyst/Program.cs b/samples/GitStatus.Mobile/Platforms/MacCatalyst/Program.cs index 58bd295..5668261 100644 --- a/samples/GitStatus.Mobile/Platforms/MacCatalyst/Program.cs +++ b/samples/GitStatus.Mobile/Platforms/MacCatalyst/Program.cs @@ -1,5 +1,4 @@ -using ObjCRuntime; -using UIKit; +using UIKit; namespace GitStatus; diff --git a/samples/GitStatus.Mobile/Platforms/iOS/Program.cs b/samples/GitStatus.Mobile/Platforms/iOS/Program.cs index 58bd295..5668261 100644 --- a/samples/GitStatus.Mobile/Platforms/iOS/Program.cs +++ b/samples/GitStatus.Mobile/Platforms/iOS/Program.cs @@ -1,5 +1,4 @@ -using ObjCRuntime; -using UIKit; +using UIKit; namespace GitStatus; diff --git a/samples/GitStatus.Mobile/ViewModels/GraphQLApiStatusViewModel.cs b/samples/GitStatus.Mobile/ViewModels/GraphQLApiStatusViewModel.cs index f6167d4..d4e50b3 100644 --- a/samples/GitStatus.Mobile/ViewModels/GraphQLApiStatusViewModel.cs +++ b/samples/GitStatus.Mobile/ViewModels/GraphQLApiStatusViewModel.cs @@ -1,7 +1,4 @@ -using System; -using System.Threading; -using System.Threading.Tasks; -using GitHubApiStatus; +using GitHubApiStatus; namespace GitStatus; diff --git a/samples/GitStatus.Mobile/ViewModels/RestApiStatusViewModel.cs b/samples/GitStatus.Mobile/ViewModels/RestApiStatusViewModel.cs index 6a7f87f..7f36717 100644 --- a/samples/GitStatus.Mobile/ViewModels/RestApiStatusViewModel.cs +++ b/samples/GitStatus.Mobile/ViewModels/RestApiStatusViewModel.cs @@ -1,7 +1,4 @@ -using System; -using System.Threading; -using System.Threading.Tasks; -using GitHubApiStatus; +using GitHubApiStatus; namespace GitStatus; diff --git a/samples/GitStatus.Web/GitStatus.Web.csproj b/samples/GitStatus.Web/GitStatus.Web.csproj index a8fb4d4..acd03ac 100644 --- a/samples/GitStatus.Web/GitStatus.Web.csproj +++ b/samples/GitStatus.Web/GitStatus.Web.csproj @@ -1,7 +1,7 @@ - net7.0 + $(LatestSupportedNetVersion) service-worker-assets.js diff --git a/samples/GitStatus.Web/Program.cs b/samples/GitStatus.Web/Program.cs index 032d56f..0cf9da4 100644 --- a/samples/GitStatus.Web/Program.cs +++ b/samples/GitStatus.Web/Program.cs @@ -1,11 +1,7 @@ -using System; -using System.Net.Http; using System.Net.Http.Headers; -using System.Threading.Tasks; using GitHubApiStatus.Extensions; using GitStatus.Shared; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; -using Microsoft.Extensions.DependencyInjection; namespace GitStatus.Web; diff --git a/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatus.Extensions.UnitTests.csproj b/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatus.Extensions.UnitTests.csproj index c98575c..2f87db6 100644 --- a/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatus.Extensions.UnitTests.csproj +++ b/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatus.Extensions.UnitTests.csproj @@ -1,10 +1,7 @@ - net461;netcoreapp2.1;netcoreapp3.1;net6.0;net7.0 - true - latest - enable + net6.0;net7.0;net8.0 false @@ -12,11 +9,9 @@ + - - - diff --git a/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatusServiceExtensionsTests.cs b/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatusServiceExtensionsTests.cs index e033c5a..5c4d66d 100644 --- a/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatusServiceExtensionsTests.cs +++ b/src/GitHubApiStatus.Extensions.UnitTests/GitHubApiStatusServiceExtensionsTests.cs @@ -1,7 +1,4 @@ -using System; using System.Net.Http.Headers; -using System.Threading; -using System.Threading.Tasks; using GitStatus.Shared; using Microsoft.Extensions.DependencyInjection; using NUnit.Framework; diff --git a/src/GitHubApiStatus.Extensions.UnitTests/MockGitHubApiStatusService.cs b/src/GitHubApiStatus.Extensions.UnitTests/MockGitHubApiStatusService.cs index 7a47d77..2356de5 100644 --- a/src/GitHubApiStatus.Extensions.UnitTests/MockGitHubApiStatusService.cs +++ b/src/GitHubApiStatus.Extensions.UnitTests/MockGitHubApiStatusService.cs @@ -1,18 +1,10 @@ -using System; -using System.Net.Http; +using System.Diagnostics.CodeAnalysis; using System.Net.Http.Headers; -using System.Threading; -using System.Threading.Tasks; namespace GitHubApiStatus.Extensions; -public class MockGitHubApiStatusService : IGitHubApiStatusService +public class MockGitHubApiStatusService(HttpClient httpClient) : IGitHubApiStatusService { - public MockGitHubApiStatusService(HttpClient httpClient) - { - - } - public bool IsProductHeaderValueValid => true; public bool IsAuthenticationHeaderValueSet => true; @@ -24,7 +16,7 @@ public Task GetApiRateLimits(CancellationToken cancellation public int GetRateLimit(in HttpResponseHeaders httpResponseHeaders) => 5000; public int GetRemainingRequestCount(in HttpResponseHeaders httpResponseHeaders) => 5000; - public bool HasReachedMaximimApiCallLimit(in HttpResponseHeaders httpResponseHeaders) => false; + public bool HasReachedMaximumApiCallLimit(in HttpResponseHeaders httpResponseHeaders) => false; public bool IsResponseFromAuthenticatedRequest(in HttpResponseHeaders httpResponseHeaders) => true; public TimeSpan GetRateLimitTimeRemaining(in HttpResponseHeaders httpResponseHeaders) => new(1, 0, 0); public DateTimeOffset GetRateLimitResetDateTime(in HttpResponseHeaders httpResponseHeaders) => DateTimeOffset.UtcNow; @@ -40,7 +32,7 @@ public void SetAuthenticationHeaderValue(AuthenticationHeaderValue authenticatio } - public bool IsAbuseRateLimit(in HttpResponseHeaders httpResponseHeaders, out TimeSpan? delta) + public bool IsAbuseRateLimit(in HttpResponseHeaders httpResponseHeaders, [NotNullWhen(true)] out TimeSpan? delta) { delta = null; return false; diff --git a/src/GitHubApiStatus.Extensions/GitHubApiStatus.Extensions.csproj b/src/GitHubApiStatus.Extensions/GitHubApiStatus.Extensions.csproj index 2ebd2ff..c43f541 100644 --- a/src/GitHubApiStatus.Extensions/GitHubApiStatus.Extensions.csproj +++ b/src/GitHubApiStatus.Extensions/GitHubApiStatus.Extensions.csproj @@ -1,7 +1,7 @@ - netstandard2.0;netstandard2.1;netcoreapp3.0;net6.0;net7.0 + netstandard2.0;netstandard2.1;netcoreapp3.0;net6.0;net8.0 true GitHubApiStatus.Extensions.snk GitHubApiStatus.Extensions @@ -25,9 +25,10 @@ Extentions for GitHub API Rate Limit Status New In This Release: -- Add .NET 7.0 +- Add .NET 8.0 +- (Breaking) Add System.Diagnostics.CodeAnalysis to IGitHubApiStatusService - 2.0.4 + 3.0.0 https://github.com/brminnick/GitHubApiStatus $(AssemblyName) ($(TargetFramework)) 1.0.0.0 diff --git a/src/GitHubApiStatus.Extensions/GitHubApiStatusServiceExtensions.cs b/src/GitHubApiStatus.Extensions/GitHubApiStatusServiceExtensions.cs index cdd4155..dd6542b 100644 --- a/src/GitHubApiStatus.Extensions/GitHubApiStatusServiceExtensions.cs +++ b/src/GitHubApiStatus.Extensions/GitHubApiStatusServiceExtensions.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http.Headers; +using System.Net.Http.Headers; using Microsoft.Extensions.DependencyInjection; namespace GitHubApiStatus.Extensions; diff --git a/src/GitHubApiStatus.UnitTests/GitHubApiStatus.UnitTests.csproj b/src/GitHubApiStatus.UnitTests/GitHubApiStatus.UnitTests.csproj index 766eed2..7951cb9 100644 --- a/src/GitHubApiStatus.UnitTests/GitHubApiStatus.UnitTests.csproj +++ b/src/GitHubApiStatus.UnitTests/GitHubApiStatus.UnitTests.csproj @@ -1,7 +1,7 @@ - net46;netcoreapp2.1;netcoreapp3.1;net6.0;net7.0 + net6.0;net7.0;net8.0 false @@ -10,7 +10,6 @@ - diff --git a/src/GitHubApiStatus.UnitTests/Models/GraphQLError.cs b/src/GitHubApiStatus.UnitTests/Models/GraphQLError.cs index f0fc5a8..0308820 100644 --- a/src/GitHubApiStatus.UnitTests/Models/GraphQLError.cs +++ b/src/GitHubApiStatus.UnitTests/Models/GraphQLError.cs @@ -1,5 +1,4 @@ -using System.Collections.Generic; -using Newtonsoft.Json; +using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace GitHubApiStatus.UnitTests; diff --git a/src/GitHubApiStatus.UnitTests/Tests/Base/BaseTest.cs b/src/GitHubApiStatus.UnitTests/Tests/Base/BaseTest.cs index 685c852..8ded9f3 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/Base/BaseTest.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/Base/BaseTest.cs @@ -1,8 +1,6 @@ -using System; using System.Net; using System.Net.Http; using System.Net.Http.Headers; -using System.Threading.Tasks; using GitStatus.Shared; using Newtonsoft.Json; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_NoCancellationToken.cs b/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_NoCancellationToken.cs index e85dcb9..6f5686e 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_NoCancellationToken.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_NoCancellationToken.cs @@ -1,7 +1,4 @@ -using System; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; +using System.Net.Http.Headers; using GitStatus.Shared; using NUnit.Framework; @@ -132,11 +129,14 @@ public async Task GetApiRateLimits_ValidSearchApiRequest() Assert.GreaterOrEqual(searchApiStatus_Final.RateLimitReset_DateTime, startTime); Assert.GreaterOrEqual(searchApiStatus_Final.RateLimitReset_UnixEpochSeconds, startTime.ToUnixTimeSeconds()); - Assert.AreEqual(searchApiStatus_Initial.RateLimit, searchApiStatus_Final.RateLimit); - Assert.IsTrue(searchApiStatus_Initial.RateLimitReset_DateTime == searchApiStatus_Final.RateLimitReset_DateTime || searchApiStatus_Initial.RateLimitReset_DateTime == searchApiStatus_Final.RateLimitReset_DateTime.Subtract(TimeSpan.FromSeconds(1))); - Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_TimeRemaining.TotalMilliseconds, searchApiStatus_Final.RateLimitReset_TimeRemaining.TotalMilliseconds); - Assert.AreEqual(searchApiStatus_Initial.RateLimitReset_UnixEpochSeconds, searchApiStatus_Final.RateLimitReset_UnixEpochSeconds); - Assert.GreaterOrEqual(searchApiStatus_Initial.RemainingRequestCount, searchApiStatus_Final.RemainingRequestCount); + if (searchApiStatus_Final.RateLimitReset_DateTime == searchApiStatus_Initial.RateLimitReset_DateTime) + { + Assert.AreEqual(searchApiStatus_Initial.RateLimit, searchApiStatus_Final.RateLimit); + Assert.IsTrue(searchApiStatus_Initial.RateLimitReset_DateTime == searchApiStatus_Final.RateLimitReset_DateTime || searchApiStatus_Initial.RateLimitReset_DateTime == searchApiStatus_Final.RateLimitReset_DateTime.Subtract(TimeSpan.FromSeconds(1))); + Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_TimeRemaining.TotalMilliseconds, searchApiStatus_Final.RateLimitReset_TimeRemaining.TotalMilliseconds); + Assert.AreEqual(searchApiStatus_Initial.RateLimitReset_UnixEpochSeconds, searchApiStatus_Final.RateLimitReset_UnixEpochSeconds); + Assert.GreaterOrEqual(searchApiStatus_Initial.RemainingRequestCount, searchApiStatus_Final.RemainingRequestCount); + } } [Test] @@ -150,10 +150,6 @@ public void GetApiRateLimits_InvalidBearerToken() //Assert var httpRequestException = Assert.ThrowsAsync(() => gitHubApiStatusService.GetApiRateLimits()); -#if NET5_0 - Assert.AreEqual(HttpStatusCode.Unauthorized, httpRequestException?.StatusCode); -#else Assert.IsTrue(httpRequestException?.Message.Contains("Unauthorized")); -#endif } } \ No newline at end of file diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_WithCancellationToken.cs b/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_WithCancellationToken.cs index 410f582..505c01f 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_WithCancellationToken.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetApiRateLimitsTests_WithCancellationToken.cs @@ -1,8 +1,5 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; -using System.Threading; -using System.Threading.Tasks; using GitStatus.Shared; using NUnit.Framework; @@ -101,7 +98,7 @@ public async Task GetApiRateLimits_ValidGraphQLApiRequest() public async Task GetApiRateLimits_ValidSearchApiRequest() { //Arrange - RateLimitStatus searchApiStatus_Initial, codeScanningApiStatus_Final; + RateLimitStatus searchApiStatus_Initial, searchApiStatus_Final; GitHubApiRateLimits gitHubApiRateLimits_Initial, gitHubApiRateLimits_Final; var startTime = DateTimeOffset.UtcNow; @@ -114,7 +111,7 @@ public async Task GetApiRateLimits_ValidSearchApiRequest() await SendValidSearchApiRequest().ConfigureAwait(false); gitHubApiRateLimits_Final = await GitHubApiStatusService.GetApiRateLimits(cancellationTokenSource.Token).ConfigureAwait(false); - codeScanningApiStatus_Final = gitHubApiRateLimits_Final.SearchApi; + searchApiStatus_Final = gitHubApiRateLimits_Final.SearchApi; //Assert Assert.IsNotNull(searchApiStatus_Initial); @@ -125,19 +122,22 @@ public async Task GetApiRateLimits_ValidSearchApiRequest() Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_DateTime, startTime); Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_UnixEpochSeconds, startTime.ToUnixTimeSeconds()); - Assert.IsNotNull(codeScanningApiStatus_Final); - Assert.AreEqual(30, codeScanningApiStatus_Final.RateLimit); - Assert.GreaterOrEqual(codeScanningApiStatus_Final.RemainingRequestCount, 0); - Assert.LessOrEqual(codeScanningApiStatus_Final.RemainingRequestCount, codeScanningApiStatus_Final.RateLimit); - Assert.AreEqual(codeScanningApiStatus_Final.RateLimitReset_DateTime.ToUnixTimeSeconds(), codeScanningApiStatus_Final.RateLimitReset_UnixEpochSeconds); - Assert.GreaterOrEqual(codeScanningApiStatus_Final.RateLimitReset_DateTime, startTime); - Assert.GreaterOrEqual(codeScanningApiStatus_Final.RateLimitReset_UnixEpochSeconds, startTime.ToUnixTimeSeconds()); - - Assert.AreEqual(searchApiStatus_Initial.RateLimit, codeScanningApiStatus_Final.RateLimit); - Assert.AreEqual(searchApiStatus_Initial.RateLimitReset_DateTime, codeScanningApiStatus_Final.RateLimitReset_DateTime); - Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_TimeRemaining, codeScanningApiStatus_Final.RateLimitReset_TimeRemaining); - Assert.AreEqual(searchApiStatus_Initial.RateLimitReset_UnixEpochSeconds, codeScanningApiStatus_Final.RateLimitReset_UnixEpochSeconds); - Assert.GreaterOrEqual(searchApiStatus_Initial.RemainingRequestCount, codeScanningApiStatus_Final.RemainingRequestCount); + Assert.IsNotNull(searchApiStatus_Final); + Assert.AreEqual(30, searchApiStatus_Final.RateLimit); + Assert.GreaterOrEqual(searchApiStatus_Final.RemainingRequestCount, 0); + Assert.LessOrEqual(searchApiStatus_Final.RemainingRequestCount, searchApiStatus_Final.RateLimit); + Assert.AreEqual(searchApiStatus_Final.RateLimitReset_DateTime.ToUnixTimeSeconds(), searchApiStatus_Final.RateLimitReset_UnixEpochSeconds); + Assert.GreaterOrEqual(searchApiStatus_Final.RateLimitReset_DateTime, startTime); + Assert.GreaterOrEqual(searchApiStatus_Final.RateLimitReset_UnixEpochSeconds, startTime.ToUnixTimeSeconds()); + + if (searchApiStatus_Final.RateLimitReset_DateTime == searchApiStatus_Initial.RateLimitReset_DateTime) + { + Assert.AreEqual(searchApiStatus_Initial.RateLimit, searchApiStatus_Final.RateLimit); + Assert.GreaterOrEqual(searchApiStatus_Final.RateLimitReset_DateTime, searchApiStatus_Initial.RateLimitReset_DateTime); + Assert.GreaterOrEqual(searchApiStatus_Initial.RateLimitReset_TimeRemaining, searchApiStatus_Final.RateLimitReset_TimeRemaining); + Assert.AreEqual(searchApiStatus_Initial.RateLimitReset_UnixEpochSeconds, searchApiStatus_Final.RateLimitReset_UnixEpochSeconds); + Assert.GreaterOrEqual(searchApiStatus_Initial.RemainingRequestCount, searchApiStatus_Final.RemainingRequestCount); + } } [Test] @@ -164,10 +164,6 @@ public void GetApiRateLimits_InvalidBearerToken() //Assert var httpRequestException = Assert.ThrowsAsync(() => GitHubApiStatusService.GetApiRateLimits(cancellationTokenSource.Token)); -#if NET5_0 - Assert.AreEqual(HttpStatusCode.Unauthorized, httpRequestException?.StatusCode); -#else Assert.IsTrue(httpRequestException?.Message.Contains("Unauthorized")); -#endif } } \ No newline at end of file diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitRestDateTimeTests.cs b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitRestDateTimeTests.cs index be58e9f..a7ab37d 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitRestDateTimeTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitRestDateTimeTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTests.cs b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTests.cs index 0b6474e..ad249f2 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTimeRemainingTests.cs b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTimeRemainingTests.cs index c1139de..4fee797 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTimeRemainingTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetRateLimitTimeRemainingTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/GetRemainingRequestCountTests.cs b/src/GitHubApiStatus.UnitTests/Tests/GetRemainingRequestCountTests.cs index da017d8..baf7ba1 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GetRemainingRequestCountTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GetRemainingRequestCountTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/GitHubApiStatusServiceConstructorTests.cs b/src/GitHubApiStatus.UnitTests/Tests/GitHubApiStatusServiceConstructorTests.cs index d7311e4..44c65b8 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/GitHubApiStatusServiceConstructorTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/GitHubApiStatusServiceConstructorTests.cs @@ -1,5 +1,4 @@ using System.Net.Http.Headers; -using System.Threading.Tasks; using GitStatus.Shared; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/HasReachedMaximumApiCallLimitTests.cs b/src/GitHubApiStatus.UnitTests/Tests/HasReachedMaximumApiCallLimitTests.cs index 31d8d68..cadb5c5 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/HasReachedMaximumApiCallLimitTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/HasReachedMaximumApiCallLimitTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; @@ -20,7 +19,7 @@ public void HasReachedMaximumApiCallLimitTests_ValidHttpResponseHeaders_True() var validHttpResponseHeaders = CreateHttpResponseHeaders(rateLimit, DateTimeOffset.UtcNow, rateLimitRemaining); //Act - hasReachedMaximumApiCallLimit_Actual = GitHubApiStatusService.HasReachedMaximimApiCallLimit(validHttpResponseHeaders); + hasReachedMaximumApiCallLimit_Actual = GitHubApiStatusService.HasReachedMaximumApiCallLimit(validHttpResponseHeaders); //Assert Assert.AreEqual(hasReachedMaximumApiCallLimit_Expected, hasReachedMaximumApiCallLimit_Actual); @@ -39,7 +38,7 @@ public void HasReachedMaximumApiCallLimitTests_ValidHttpResponseHeaders_False() var validHttpResponseHeaders = CreateHttpResponseHeaders(rateLimit, DateTimeOffset.UtcNow, rateLimitRemaining); //Act - hasReachedMaximumApiCallLimit_Actual = GitHubApiStatusService.HasReachedMaximimApiCallLimit(validHttpResponseHeaders); + hasReachedMaximumApiCallLimit_Actual = GitHubApiStatusService.HasReachedMaximumApiCallLimit(validHttpResponseHeaders); //Assert Assert.AreEqual(hasReachedMaximumApiCallLimit_Expected, hasReachedMaximumApiCallLimit_Actual); @@ -54,7 +53,7 @@ public void HasReachedMaximumApiCallLimitTests_InvalidHttpResponseHeaders() //Act //Assert - Assert.Throws(() => GitHubApiStatusService.HasReachedMaximimApiCallLimit(invalidHttpResponseMessage.Headers)); + Assert.Throws(() => GitHubApiStatusService.HasReachedMaximumApiCallLimit(invalidHttpResponseMessage.Headers)); } [Test] @@ -67,7 +66,7 @@ public void HasReachedMaximumApiCallLimitTests_NullHttpResponseHeaders() //Assert #pragma warning disable CS8604 // Possible null reference argument. - Assert.Throws(() => GitHubApiStatusService.HasReachedMaximimApiCallLimit(nullHttpResponseHeaders)); + Assert.Throws(() => GitHubApiStatusService.HasReachedMaximumApiCallLimit(nullHttpResponseHeaders)); #pragma warning restore CS8604 // Possible null reference argument. } } \ No newline at end of file diff --git a/src/GitHubApiStatus.UnitTests/Tests/HttpResponseHeadersExtensionsTests.cs b/src/GitHubApiStatus.UnitTests/Tests/HttpResponseHeadersExtensionsTests.cs index 088653f..25a7b19 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/HttpResponseHeadersExtensionsTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/HttpResponseHeadersExtensionsTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using NUnit.Framework; namespace GitHubApiStatus.UnitTests; diff --git a/src/GitHubApiStatus.UnitTests/Tests/IsAbuseRateLimitTest.cs b/src/GitHubApiStatus.UnitTests/Tests/IsAbuseRateLimitTest.cs index 6ecb7d5..d04b275 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/IsAbuseRateLimitTest.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/IsAbuseRateLimitTest.cs @@ -1,5 +1,4 @@ -using System; -using NUnit.Framework; +using NUnit.Framework; namespace GitHubApiStatus.UnitTests; diff --git a/src/GitHubApiStatus.UnitTests/Tests/IsResponseFromAuthenticatedRequestTests.cs b/src/GitHubApiStatus.UnitTests/Tests/IsResponseFromAuthenticatedRequestTests.cs index c1f281a..d356653 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/IsResponseFromAuthenticatedRequestTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/IsResponseFromAuthenticatedRequestTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Net.Http; +using System.Net.Http; using System.Net.Http.Headers; using NUnit.Framework; diff --git a/src/GitHubApiStatus.UnitTests/Tests/ProductHeaderValueTests.cs b/src/GitHubApiStatus.UnitTests/Tests/ProductHeaderValueTests.cs index 1d8a15e..fefcac1 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/ProductHeaderValueTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/ProductHeaderValueTests.cs @@ -1,15 +1,13 @@ -using System; -using System.Net.Http.Headers; -using System.Threading.Tasks; +using System.Net.Http.Headers; using GitStatus.Shared; using NUnit.Framework; - + namespace GitHubApiStatus.UnitTests; - -class AddProductHeaderValueTests : BaseTest -{ - [Test] - public void NullProductHeaderValueTest() + +class AddProductHeaderValueTests : BaseTest +{ + [Test] + public void NullProductHeaderValueTest() { //Arrange var gitHubApiStatusService = new GitHubApiStatusService(); @@ -20,11 +18,11 @@ public void NullProductHeaderValueTest() #pragma warning disable CS8625 // Cannot convert null literal to non-nullable reference type. Assert.Throws(() => gitHubApiStatusService.AddProductHeaderValue(null)); #pragma warning restore CS8625 // Cannot convert null literal to non-nullable reference type. - Assert.IsFalse(gitHubApiStatusService.IsProductHeaderValueValid); - } - - [Test] - public void NullNameTest() + Assert.IsFalse(gitHubApiStatusService.IsProductHeaderValueValid); + } + + [Test] + public void NullNameTest() { //Arrange var gitHubApiStatusService = new GitHubApiStatusService(); @@ -33,32 +31,36 @@ public void NullNameTest() //Assert #pragma warning disable CS8625 // Cannot convert null literal to non-nullable reference type. +#if NET8_0_OR_GREATER + Assert.Throws(() => gitHubApiStatusService.AddProductHeaderValue(new ProductHeaderValue(null))); +#else Assert.Throws(() => gitHubApiStatusService.AddProductHeaderValue(new ProductHeaderValue(null))); +#endif #pragma warning restore CS8625 // Cannot convert null literal to non-nullable reference type. - Assert.IsFalse(gitHubApiStatusService.IsProductHeaderValueValid); - } - - [Test] - public async Task ValidProductHeaderValueTest() + Assert.IsFalse(gitHubApiStatusService.IsProductHeaderValueValid); + } + + [Test] + public async Task ValidProductHeaderValueTest() { //Arrange - var gitHubApiStatusService = new GitHubApiStatusService(); - gitHubApiStatusService.AddProductHeaderValue(new ProductHeaderValue(nameof(GitHubApiStatus))); + var gitHubApiStatusService = new GitHubApiStatusService(); + gitHubApiStatusService.AddProductHeaderValue(new ProductHeaderValue(nameof(GitHubApiStatus))); gitHubApiStatusService.SetAuthenticationHeaderValue(new AuthenticationHeaderValue(GitHubConstants.AuthScheme, GitHubConstants.PersonalAccessToken)); //Act var apiRateLimits = await gitHubApiStatusService.GetApiRateLimits().ConfigureAwait(false); //Assert - Assert.IsNotNull(gitHubApiStatusService); - Assert.IsTrue(gitHubApiStatusService.IsProductHeaderValueValid); - - Assert.IsNotNull(apiRateLimits); - Assert.IsNotNull(apiRateLimits.AppManifestConfiguration); - Assert.IsNotNull(apiRateLimits.CodeScanningUpload); - Assert.IsNotNull(apiRateLimits.GraphQLApi); - Assert.IsNotNull(apiRateLimits.RestApi); - Assert.IsNotNull(apiRateLimits.SearchApi); - Assert.IsNotNull(apiRateLimits.SourceImport); - } + Assert.IsNotNull(gitHubApiStatusService); + Assert.IsTrue(gitHubApiStatusService.IsProductHeaderValueValid); + + Assert.IsNotNull(apiRateLimits); + Assert.IsNotNull(apiRateLimits.AppManifestConfiguration); + Assert.IsNotNull(apiRateLimits.CodeScanningUpload); + Assert.IsNotNull(apiRateLimits.GraphQLApi); + Assert.IsNotNull(apiRateLimits.RestApi); + Assert.IsNotNull(apiRateLimits.SearchApi); + Assert.IsNotNull(apiRateLimits.SourceImport); + } } \ No newline at end of file diff --git a/src/GitHubApiStatus.UnitTests/Tests/SetAuthenticationHeaderValueTests.cs b/src/GitHubApiStatus.UnitTests/Tests/SetAuthenticationHeaderValueTests.cs index b553f35..9c673fe 100644 --- a/src/GitHubApiStatus.UnitTests/Tests/SetAuthenticationHeaderValueTests.cs +++ b/src/GitHubApiStatus.UnitTests/Tests/SetAuthenticationHeaderValueTests.cs @@ -1,5 +1,4 @@ using System.Net.Http.Headers; -using System.Threading.Tasks; using GitStatus.Shared; using NUnit.Framework; diff --git a/src/GitHubApiStatus/GitHubApiStatus.csproj b/src/GitHubApiStatus/GitHubApiStatus.csproj index b9fdbf5..d73c199 100644 --- a/src/GitHubApiStatus/GitHubApiStatus.csproj +++ b/src/GitHubApiStatus/GitHubApiStatus.csproj @@ -1,7 +1,7 @@ - netstandard1.3;netstandard2.0;netstandard2.1;netcoreapp3.0;net6.0;net7.0 + netstandard1.3;netstandard2.0;netstandard2.1;netcoreapp3.0;net6.0;net8.0 true GitHubApiStatus.snk GitHubApiStatus @@ -37,9 +37,10 @@ Calculate the GitHub API Rate Limits for the following GitHub APIs New In This Release: -- Add .NET 7.0 +- Add .NET 8.0 +- (Breaking) Add System.Diagnostics.CodeAnalysis to IGitHubApiStatusService - 2.0.4 + 3.0.0 https://github.com/brminnick/GitHubApiStatus $(AssemblyName) ($(TargetFramework)) 1.0.0.0 diff --git a/src/GitHubApiStatus/GitHubApiStatusException.cs b/src/GitHubApiStatus/GitHubApiStatusException.cs index 6332a46..4df297d 100644 --- a/src/GitHubApiStatus/GitHubApiStatusException.cs +++ b/src/GitHubApiStatus/GitHubApiStatusException.cs @@ -1,6 +1,4 @@ -using System; - -namespace GitHubApiStatus; +namespace GitHubApiStatus; /// /// Exception thrown by GitHubApiStatus diff --git a/src/GitHubApiStatus/HttpResponseHeadersExtensions.cs b/src/GitHubApiStatus/HttpResponseHeadersExtensions.cs index 49da044..83f92eb 100644 --- a/src/GitHubApiStatus/HttpResponseHeadersExtensions.cs +++ b/src/GitHubApiStatus/HttpResponseHeadersExtensions.cs @@ -1,5 +1,4 @@ -using System.Linq; -using System.Net.Http.Headers; +using System.Net.Http.Headers; namespace GitHubApiStatus; diff --git a/src/GitHubApiStatus/Interfaces/IGitHubApiStatusService.cs b/src/GitHubApiStatus/Interfaces/IGitHubApiStatusService.cs index 68cfaae..bafee4e 100644 --- a/src/GitHubApiStatus/Interfaces/IGitHubApiStatusService.cs +++ b/src/GitHubApiStatus/Interfaces/IGitHubApiStatusService.cs @@ -1,7 +1,5 @@ -using System; +using System.Diagnostics.CodeAnalysis; using System.Net.Http.Headers; -using System.Threading; -using System.Threading.Tasks; namespace GitHubApiStatus; @@ -59,14 +57,19 @@ public interface IGitHubApiStatusService /// HttpResponseHeaders from GitHub API Response /// Time Remaining in Retry-After Header /// - bool IsAbuseRateLimit(in HttpResponseHeaders httpResponseHeaders, out TimeSpan? delta); + bool IsAbuseRateLimit(in HttpResponseHeaders httpResponseHeaders, +#if NETSTANDARD2_1 || NET + [NotNullWhen(true)] out TimeSpan? delta); +#else +out TimeSpan? delta); +#endif /// /// Determines Whether GitHub's Maximum API Limit Has Been Reached /// /// HttpResponseHeaders from GitHub API Response /// Whether GitHub's Maximum API Limit Has Been Reached - bool HasReachedMaximimApiCallLimit(in HttpResponseHeaders httpResponseHeaders); + bool HasReachedMaximumApiCallLimit(in HttpResponseHeaders httpResponseHeaders); /// /// Get Time Remaining Until GitHub API Rate Limit Resets diff --git a/src/GitHubApiStatus/Interfaces/IRateLimitStatus.cs b/src/GitHubApiStatus/Interfaces/IRateLimitStatus.cs index db241fc..2c83a0f 100644 --- a/src/GitHubApiStatus/Interfaces/IRateLimitStatus.cs +++ b/src/GitHubApiStatus/Interfaces/IRateLimitStatus.cs @@ -1,6 +1,4 @@ -using System; - -namespace GitHubApiStatus; +namespace GitHubApiStatus; /// /// Interface for GitHub API Raite Limit Status diff --git a/src/GitHubApiStatus/Models/RateLimitStatus.cs b/src/GitHubApiStatus/Models/RateLimitStatus.cs index 055fed3..d0c1984 100644 --- a/src/GitHubApiStatus/Models/RateLimitStatus.cs +++ b/src/GitHubApiStatus/Models/RateLimitStatus.cs @@ -1,6 +1,4 @@ -using System; - -namespace GitHubApiStatus; +namespace GitHubApiStatus; /// /// GitHub API Rate Limit Status diff --git a/src/GitHubApiStatus/README.md b/src/GitHubApiStatus/README.md index a8e89cf..1941ec1 100755 --- a/src/GitHubApiStatus/README.md +++ b/src/GitHubApiStatus/README.md @@ -39,10 +39,10 @@ public int GetRemainingRequestCount(HttpResponseHeaders httpResponseHeaders) - Get the number of GitHub API Requests remaining - Parses the `X-RateLimit-Remaining` header and return its `int` value -### HasReachedMaximimApiCallLimit +### HasReachedMaximumApiCallLimit ```csharp -public bool HasReachedMaximimApiCallLimit(HttpResponseHeaders httpResponseHeaders) +public bool HasReachedMaximumApiCallLimit(HttpResponseHeaders httpResponseHeaders) ``` - Determines whether the maximum number of requests - Parses the `X-RateLimit-Remaining` header and returns wether or not it is greater than 0 @@ -188,7 +188,7 @@ static async Task Main(string[] args) bool isAuthenticated = gitHubApiStatusService.IsResponseFromAuthenticatedRequest(restApiResponse.Headers); - bool hasReachedMaximumApiLimit = gitHubApiStatusService.HasReachedMaximimApiCallLimit(restApiResponse.Headers); + bool hasReachedMaximumApiLimit = gitHubApiStatusService.HasReachedMaximumApiCallLimit(restApiResponse.Headers); Console.WriteLine($"What is the GitHub REST API Rate Limit? {rateLimit}"); // What is the GitHub REST API Rate Limit? 60 diff --git a/src/GitHubApiStatus/Services/GitHubApiStatusService.cs b/src/GitHubApiStatus/Services/GitHubApiStatusService.cs index bf16f99..9936749 100644 --- a/src/GitHubApiStatus/Services/GitHubApiStatusService.cs +++ b/src/GitHubApiStatus/Services/GitHubApiStatusService.cs @@ -1,9 +1,4 @@ -using System; -using System.Linq; -using System.Net.Http.Headers; -using System.Threading; -using System.Threading.Tasks; -using System.Net.Http; +using System.Net.Http.Headers; #if NETSTANDARD1_3 using System.IO; @@ -230,7 +225,7 @@ public bool IsAbuseRateLimit(in HttpResponseHeaders httpResponseHeaders, /// /// HttpResponseHeaders from GitHub API Response /// Whether GitHub's Maximum API Limit Has Been Reached - public bool HasReachedMaximimApiCallLimit(in HttpResponseHeaders httpResponseHeaders) + public bool HasReachedMaximumApiCallLimit(in HttpResponseHeaders httpResponseHeaders) { var remainingApiRequests = GetRemainingRequestCount(httpResponseHeaders); return remainingApiRequests <= 0;